##// END OF EJS Templates
Work on the config system....
Work on the config system. * Removed ``NoConfigDefault`` from our config logic entirely. It turns out that argparse has a nice ``argparse.SUPPRESS`` object that handles this nicely. * Completely cleared the previous config when :meth:`load_config` is called to allow it to be called more than once. * Added some additional tests and docs for the config system.

File last commit:

r2064:a2e46ebb
r2500:00050dfb
Show More
__init__.py
13 lines | 429 B | text/x-python | PythonLexer
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # -*- coding: utf-8 -*-
"""This directory is meant for special-purpose extensions to IPython.
This can include things which alter the syntax processing stage (see
PhysicalQ_Input for an example of how to do this).
Any file located here can be called with an 'execfile =' option as
Brian Granger
Renaming Extensions=>extensions in code and imports.
r2064 execfile = extensions/filename.py
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
since the IPython directory itself is already part of the search path for
files listed as 'execfile ='.
"""