##// END OF EJS Templates
Removed deprecated flag marked for removal in 5.0
Matthias Bussonnier -
Show More
@@ -62,20 +62,6 b" addflag('color-info', 'InteractiveShell.color_info',"
62 colours.""",
62 colours.""",
63 "Disable using colors for info related things."
63 "Disable using colors for info related things."
64 )
64 )
65 addflag('deep-reload', 'InteractiveShell.deep_reload',
66 """ **Deprecated** and will be removed in IPython 5.0.
67
68 Enable deep (recursive) reloading by default. IPython can use the
69 deep_reload module which reloads changes in modules recursively (it
70 replaces the reload() function, so you don't need to change anything to
71 use it). deep_reload() forces a full reload of modules whose code may
72 have changed, which the default reload() function does not. When
73 deep_reload is off, IPython will use the normal reload(), but
74 deep_reload will still be available as dreload(). This feature is off
75 by default [which means that you have both normal reload() and
76 dreload()].""",
77 "Disable deep (recursive) reloading by default."
78 )
79 nosep_config = Config()
65 nosep_config = Config()
80 nosep_config.InteractiveShell.separate_in = ''
66 nosep_config.InteractiveShell.separate_in = ''
81 nosep_config.InteractiveShell.separate_out = ''
67 nosep_config.InteractiveShell.separate_out = ''
General Comments 0
You need to be logged in to leave comments. Login now