From b133a709842e32d838c24dd2b22f9c622bc37992 2017-02-10 10:28:08 From: Min RK Date: 2017-02-10 10:28:08 Subject: [PATCH] Merge pull request #10279 from Carreau/help-xmode Provide help String for `xmode`. --- 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)