python的tab模块
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#python startup file import sys import readline import rlcompleter #import atexit import os #tab completion readline.parse_and_bind('tab: complete') #history file histfile = os.path.join(os.environ['HOME'],'.pythonhistory') #try: # readline.read_history_file(histfile) #except IOError: # pass #atexit.register(readline.write_history_file,histfile) |
将以上代码写入/usr/lib/python2.6/site-packages文件夹下,则可以在python里面自动加载此模块文件。
二〇一四年七月二十三日 14:24:26
版权声明:
作者:龙魂
链接:https://blog.wlzs.cn/python%e7%9a%84tab%e6%a8%a1%e5%9d%97/
来源:学海无涯
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
海报
python的tab模块
Shell
#python startup file
import sys
import readline
import rlcompleter
#import atexit
import os
#tab completion
……

共有 0 条评论