tab.py

Posted pzk7788

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tab.py相关的知识,希望对你有一定的参考价值。

[[email protected] ~]# 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的主要内容,如果未能解决你的问题,请参考以下文章

PyQt5 - 具有相同对象的选项卡

python tab_to_csv.py

python 交互界面tab补全

pyhton tab 自动补全

Python tab 补全

python交互模式下命令tab补全