mirror of https://github.com/dirtbags/netarch.git
9 lines
163 B
Python
9 lines
163 B
Python
|
try:
|
||
|
import readline
|
||
|
except ImportError:
|
||
|
print "Module readline not available."
|
||
|
else:
|
||
|
import rlcompleter
|
||
|
readline.parse_and_bind("tab: complete")
|
||
|
|