##// END OF EJS Templates
Merging in ipython-ipython1b branch. This branch was used to merge in the docs from ipython1-dev,...
Merging in ipython-ipython1b branch. This branch was used to merge in the docs from ipython1-dev, as well as the stuff from the ipython1-sconfig branch. In addition to simply merging the docs from ipython1-dev, I have completely reorganized the docs to make the easier to read and write.

File last commit:

r1253:9ce3a358
r1261:a818e11a merge
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()