##// END OF EJS Templates
undo some changes that were only intended for private $HOME/_ipython dir.
undo some changes that were only intended for private $HOME/_ipython dir.

File last commit:

r236:9150d625
r236:9150d625
Show More
ipy_user_conf.py
31 lines | 848 B | text/x-python | PythonLexer
""" User configuration file for IPython
This is a more flexible and safe way to configure ipython than *rc files
(ipythonrc, ipythonrc-pysh etc.)
This file is always imported on ipython startup. You can import the
ipython extensions you need here (see IPython/Extensions directory).
Feel free to edit this file to customize your ipython experience.
Note that as such this file does nothing, for backwards compatibility.
Consult e.g. file 'ipy_profile_sh.py' for an example of the things
you can do here.
"""
# Most of your config files and extensions will probably start with this import
import IPython.ipapi
ip = IPython.ipapi.get()
# You probably want to uncomment this if you did %upgrade -nolegacy
# import ipy_sane_defaults
def main():
o = ip.options()
# An example on how to set options
#o.autocall = 1
main()