diff --git a/IPython/core/usage.py b/IPython/core/usage.py index d1a03b7..0f2ff03 100644 --- a/IPython/core/usage.py +++ b/IPython/core/usage.py @@ -336,10 +336,6 @@ help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. """ -gui_note = """\ -%guiref -> A brief reference about the graphical user interface. -""" - default_banner_parts = [ 'Python %s\n' % (sys.version.split('\n')[0],), 'Type "copyright", "credits" or "license" for more information.\n\n', @@ -349,8 +345,4 @@ default_banner_parts = [ quick_guide ] -default_gui_banner_parts = default_banner_parts + [gui_note] - default_banner = ''.join(default_banner_parts) - -default_gui_banner = ''.join(default_gui_banner_parts)