##// END OF EJS Templates
Fix %reset default reply to match message...
Fix %reset default reply to match message 'y/[n]' prompt indicates that 'n' is default, but it was not specified as such, so no input resulted in asking again.

File last commit:

r4767:6c940b74
r5187:25062588
Show More
ipython_config.py
11 lines | 348 B | text/x-python | PythonLexer
Thomas Kluyver
Safer loading of default config inside Python 3 config.
r4767 c = get_config()
# If the master config file uses syntax that's invalid in Python 3, we'll skip
# it and just use the factory defaults.
try:
load_subconfig('ipython_config.py', profile='default')
except Exception:
pass
else:
# We reset exec_lines in case they're not compatible with Python 3.
c.InteractiveShellApp.exec_lines = []