##// END OF EJS Templates
test that rename fails with 409 if it would clobber...
test that rename fails with 409 if it would clobber (test already passes, but it should still be tested) closes #4600

File last commit:

r12797:d1ebf45a
r13710:aeb5b086
Show More
ipython_config.py
13 lines | 287 B | text/x-python | PythonLexer
MinRK
reorganize default config files to match profiles as directories...
r3954 c = get_config()
MinRK
load_subconfig supports profiles...
r4030 app = c.InteractiveShellApp
MinRK
reorganize default config files to match profiles as directories...
r3954
# This can be used at any point in a config file to load a sub config
# and merge it into the current one.
MinRK
load_subconfig supports profiles...
r4030 load_subconfig('ipython_config.py', profile='default')
MinRK
reorganize default config files to match profiles as directories...
r3954
lines = """
MinRK
remove old default config files
r3965 from IPython.parallel import *
MinRK
reorganize default config files to match profiles as directories...
r3954 """
MinRK
update bundled profiles to use extend
r12797 app.exec_lines.append(lines)
MinRK
reorganize default config files to match profiles as directories...
r3954