##// END OF EJS Templates
Added platutils.get_long_path_name to expand paths with "~" on win32....
Added platutils.get_long_path_name to expand paths with "~" on win32. This might be needed to fix ticket https://bugs.launchpad.net/bugs/366353 But, there are still problems with Magic.parse_options

File last commit:

r1715:78d99fed
r1986:03d5e1b5
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()