diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index 2f07c7f..744b319 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -389,7 +389,9 @@ class InteractiveShell(SingletonConfigurable): separate_out2 = SeparateUnicode('').tag(config=True) wildcards_case_sensitive = Bool(True).tag(config=True) xmode = CaselessStrEnum(('Context','Plain', 'Verbose'), - default_value='Context').tag(config=True) + default_value='Context', + help="Switch modes for the IPython exception handlers." + ).tag(config=True) # Subcomponents of InteractiveShell alias_manager = Instance('IPython.core.alias.AliasManager', allow_none=True)