X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=lib%2Fpython%2Finit.py;h=ff42ce40c845dbcbd0d94c8dbf4cf96763aeedd5;hb=d2aa8f4870cc2ed1d4051baa1c36f837719d1a64;hp=a38cea39332d3904ffd2313d2abfc4e6607688fb;hpb=702b527246987a7efc3d7e939d02c8b8111eccb1;p=dotfiles.git diff --git a/lib/python/init.py b/lib/python/init.py index a38cea3..ff42ce4 100644 --- a/lib/python/init.py +++ b/lib/python/init.py @@ -36,6 +36,11 @@ def init(): or os.path.expanduser('~/.inputrc') readline.read_init_file(initfile) + #if 'libedit' in readline.__doc__: + # readline.parse_and_bind("bind ^I rl_complete") + #else: + # readline.parse_and_bind("tab: complete") + histfile = os.path.expanduser('~/.python_history') try: readline.read_history_file(histfile) @@ -110,7 +115,10 @@ def init(): def myinput(prompt=None): save_stdout = sys.stdout sys.stdout = sys.__stdout__ - result = builtin_input(prompt) + try: + result = builtin_input(prompt) + except EOFError: + result = None sys.stdout = save_stdout return result