16 lines
541 B
Python
16 lines
541 B
Python
# -*- coding: UTF-8 -*-
|
|
# Example snippet to use in a PYTHONSTARTUP file
|
|
try:
|
|
import pyreadline.rlmain
|
|
#pyreadline.rlmain.config_path=r"c:\xxx\pyreadlineconfig.ini"
|
|
import readline,atexit
|
|
except ImportError:
|
|
print "Module readline not available."
|
|
else:
|
|
#import tab completion functionality
|
|
import rlcompleter
|
|
#activate tab completion
|
|
readline.parse_and_bind("tab: complete")
|
|
readline.read_history_file()
|
|
atexit.register(readline.write_history_file)
|
|
del readline,rlcompleter,atexit
|