Python

  • Config (the zen machine)
    • .pythonrc
      try:
          import readline
      except ImportError:
          print "Module readline not available."
      else:
          import rlcompleter
          readline.parse_and_bind("tab: complete")
      
    • .bashrc
      export PYTHONSTARTUP=$HOME/.pythonrc