netarch/startup.py

9 lines
163 B
Python
Raw Normal View History

2007-11-12 21:11:25 -07:00
try:
import readline
except ImportError:
print "Module readline not available."
else:
import rlcompleter
readline.parse_and_bind("tab: complete")