view python/.pythonstartup @ 27:aa1019ab89b4

Enable shelve hg extension.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Oct 2016 20:32:00 -0500
parents 357906c82c1f
children
line wrap: on
line source
# python startup file
try:
   import readline
except ImportError:
   pass
else:
   import atexit
   import os
   import rlcompleter

   # 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
   readline.set_history_length(1024)

   atexit.register(readline.write_history_file, histfile)
   del os, histfile, readline, rlcompleter