码迷,mamicode.com
首页 > 编程语言 > 详细

python模块(tab)

时间:2015-12-16 19:18:36      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

tab

用来实现python命令补全的py文件,把它当成一个模块使用

技术分享
 1 #!/usr/bin/python 
 2 import sys
 3 import readline
 4 import rlcompleter
 5 import atexit
 6 import os
 7 # tab completion 
 8 readline.parse_and_bind(tab: complete)
 9 # history file 
10 histfile = os.path.join(os.environ[HOME], .pythonhistory)
11 try:
12     readline.read_history_file(histfile)
13 except IOError:
14     pass
15 atexit.register(readline.write_history_file, histfile)
16 del os, histfile, readline, rlcompleter
View Code

将文件拷贝到python的包目录下,一般是python安装路径/lib64/python2.x目录下

使用:

import  tab  

python模块(tab)

标签:

原文地址:http://www.cnblogs.com/huangweimin/p/5051663.html

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