##// END OF EJS Templates
Do not force a reload of user config by default....
Do not force a reload of user config by default. Forcing this kind of reload can cause side effects. Also added some notes for future fixing, the way configs are being loaded is a mess right now. Though most of this will get cleaned up in the refactoring anyway.

File last commit:

r1715:78d99fed
r1967:8e7f0d52
Show More
sample_config.py
19 lines | 447 B | text/x-python | PythonLexer
from IPython.config.api import *
class SubSubSample(Config):
my_int = Int(3)
class Sample(Config):
my_float = Float(3)
my_choice = Enum('a','b','c')
class MiddleSection(Config):
left_alone = Enum('1','2','c')
unknown_mod = Module('asd')
class SubSample(Config):
subsample_uri = URI('http://localhost:8080')
# Example of how to include external config
SubSubSample = SubSubSample()