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

Python建立Tab自动补全的脚本

时间:2017-05-01 19:47:58      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:自动补全   err   atexit   port   exit   read   ioerror   history   except   

Python建立Tab自动补全的脚本

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

 

Python建立Tab自动补全的脚本

标签:自动补全   err   atexit   port   exit   read   ioerror   history   except   

原文地址:http://www.cnblogs.com/fallenmoon/p/6792510.html

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