Mercurial > public > dotfiles
view python/.pythonstartup @ 12:71f65ccb96f0
Adding my .hgrc and .pythonstartup files.
Added a .hgignore.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 04 Jun 2013 19:24:08 -0500 |
parents | |
children | 357906c82c1f |
line wrap: on
line source
# python startup file import readline import rlcompleter import atexit import os # tab completion readline.parse_and_bind('tab: complete') # history file histfile = os.path.join(os.environ['HOME'], '.pythonhistory') try: readline.read_history_file(histfile) except IOError: pass atexit.register(readline.write_history_file, histfile) del os, histfile, readline, rlcompleter