码迷,mamicode.com
首页 > 其他好文 > 详细

tab.py

时间:2017-12-30 12:40:38      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:gis   bsp   home   lib   bin   readline   err   host   body   

[root@localhost ~]# cat /usr/lib64/python2.6/tab.py
#!/usr/bin/env python
import os
import sys
import atexit
import readline
import rlcompleter

readline.parse_and_bind(tab: complete)
histfile = os.path.join(os.environ[HOME], .pythonhistory)

try:
    readline.read_history_file(histfile)
except IOError:
    pass
atexit.register(readline.write_history_file, histfile)
del os, histfile, readline, rlcompleter

 

 

 

 

 

     

tab.py

标签:gis   bsp   home   lib   bin   readline   err   host   body   

原文地址:https://www.cnblogs.com/pzk7788/p/8148697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!