求教脚本语法错误

本帖最后由 小锐同学1 于 2011-06-01 21:57 编辑
  1. [root@LK python]# cat coroutines.py
  2. #!/usr/bin/env python
  3. #coding:utf-8
  4. import time
  5. import sys
  6. ###
  7. #  生成器與協程
  8. ##
  9. ###
  10. #  生成器
  11. #  不斷返回新行
  12. #  @param [in]  f    打開的文件描述符
  13. #  @yield line 新的行
  14. ##
  15. def tail(f):
  16.         f.seek(0,2)     # 移動到文件末尾
  17.                                 # To change the file object’s position, use f.seek(offset, from_what). The position is computed from adding offset to a reference point; the reference point is selected by the from_what argument. A from_what value of 0 measures from the beginning of the file, 1 uses the current file position, and 2 uses the end of the file as the reference point. from_what can be omitted and defaults to 0, using the beginning of the file as the reference point.
  18.         while True:
  19.                 line = f.readline()     # 嘗試讀取一個新的文本行
  20.                 if not line:            # 如果沒有內容,暫時休眠并再次嘗試
  21.                         time.sleep(0.1)
  22.                         continue
  23.                 yield line
  24. ###
  25. #  協程
  26. #  查找匹配關鍵字的輸入行
  27. #  @param [in]  要匹配的關鍵字
  28. #  @print [out] 打印匹配的行
  29. ##
  30. def print_matches(matchtext):
  31.         print "Looking for ",matchtext
  32.         while True:
  33.                 line = (yield)  # 獲取一個文本
  34.                 if matchtext in line:
  35.                         print line

  36. if __name__ == "__main__":
  37.         if len(sys.argv) != 2:
  38.                 sys.exit(1)

  39.         matchers = [ # 一組匹配協程
  40.                 print_matches("python"),
  41.                 print_matches("www.lkcc.info"),
  42.                 print_matches("bbs.lkcc.info")
  43.         ]

  44.         for m in matchers:      # 通過調用next()準備所有的匹配協程, 執行到第一個yield語句
  45.                 m.next()

  46.         f = open(sys.argv[1])
  47.         for line in tail(f):
  48.                 for m in matchers:
  49.                         m.send(line)
复制代码
看似没错,但是执行后就语法错误,找不到错误,求解。
  1. [root@LK python]# ./coroutines.py /var/log/messages
  2.   File "./coroutines.py", line 32
  3.     line = (yield)      # 獲取一個文本
  4.                 ^
  5. SyntaxError: invalid syntax
复制代码
谢谢各位老师

作者: 小锐同学1   发布时间: 2011-06-01

回复 小锐同学1
这个有错误么?看看你的python版本吧。

作者: 106033177   发布时间: 2011-06-01