In python, tab auto-completion can be enabled for raw_input
with readline
module:
readline.parse_and_bind("tab: complete")
However, how can I revert the effect of the line above?
I have a program that needs tab to switch between auto-completion and \t
for raw_input
.