免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6911 | 回复: 3
打印 上一主题 下一主题

linux下输入python启动交互模式,程序自动运行 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-01 11:16 |只看该作者 |倒序浏览
本帖最后由 werm520 于 2011-11-01 11:31 编辑
  1. #! /usr/bin/python
  2. #filename: readline.py
  3. #coding:UTF-8

  4. f = open('/hequan/cdays-3-test.txt')
  5. for line in open('/hequan/cdays-3-test.txt'):
  6.     line=f.readline()
  7.     print line
  8.     open('/hequan/cdays-3-result.txt','a').write(line)
  9. f.close()
复制代码
只要输入python进入交互界面,该程序就会自动运行,并生成一个readline.pyc文件{:3_204:}搞不懂这是怎么回事?
输出如下:
HIE-192-168-2-6-20110314053236:/hequan # python
Python 2.6 (r26:66714, May  5 2010, 14:02:39)
[GCC 4.3.4 [gcc-4_3-branch revision 152973]] on linux2
Type "help", "copyright", "credits" or "license" for more information.
1 key1
2 key2
3 key1
7 key3
8 key2
10 key1
14 key2
19 key4
20 key1
30 key3
Traceback (most recent call last):
  File "/etc/pythonstart", line 8, in <module>
    import rlcompleter
  File "/usr/lib64/python2.6/rlcompleter.py", line 170, in <module>
    readline.set_completer(Completer().complete)
AttributeError: 'module' object has no attribute 'set_completer'

论坛徽章:
0
2 [报告]
发表于 2011-11-01 11:30 |只看该作者
改个文件名.......
^_^

论坛徽章:
0
3 [报告]
发表于 2011-11-01 11:33 |只看该作者
回复 2# namsamdo


    呵呵 是的,刚看了下,发现/etc/pythonstart脚本中,有加载readline的模块。
  1. 1 # startup script for python to enable saving of interpreter history and
  2.   2 # enabling name completion
  3.   3
  4.   4 # import needed modules
  5.   5 import atexit
  6.   6 import os
  7.   7 import readline
  8.   8 import rlcompleter
  9.   9
  10. 10 # where is history saved
  11. 11 historyPath = os.path.expanduser("~/.pyhistory")
  12. 12
  13. 13 # handler for saving history
  14. 14 def save_history(historyPath=historyPath):
  15. 15     import readline
  16. 16     readline.write_history_file(historyPath)
  17. 17
  18. 18 # read history, if it exists
  19. 19 if os.path.exists(historyPath):
  20. 20     readline.set_history_length(10000)
  21. 21     readline.read_history_file(historyPath)
  22. 22
  23. 23 # register saving handler
  24. 24 atexit.register(save_history)
  25. 25
  26. 26 # enable completion
  27. 27 readline.parse_and_bind('tab: complete')
  28. 28
  29. 29 # cleanup
  30. 30 del os, atexit, readline, rlcompleter, save_history, historyPath
复制代码

论坛徽章:
0
4 [报告]
发表于 2011-11-01 11:42 |只看该作者
呵呵,自己写的文件名要避开一些常用的库名.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP