##// END OF EJS Templates
Finish banner with BDFL Authoritative decision....
Matthias Bussonnier -
Show More
@@ -76,6 +76,20 b' improved functionality and flexibility.'
76 At your system command line, type 'ipython -h' to see the command line
76 At your system command line, type 'ipython -h' to see the command line
77 options available. This document only describes interactive features.
77 options available. This document only describes interactive features.
78
78
79 GETTING HELP
80 ------------
81
82 Within IPython you have various way to access help:
83
84 ? -> Introduction and overview of IPython's features (this screen).
85 object? -> Details about 'object'.
86 object?? -> More detailed, verbose information about 'object'.
87 %quickref -> Quick reference of all IPython specific syntax and magics.
88 help -> Access Python's own help system.
89
90 If you are in terminal IPython you can quit this screen by pressing `q`.
91
92
79 MAIN FEATURES
93 MAIN FEATURES
80 -------------
94 -------------
81
95
@@ -325,16 +339,9 b' The following magic functions are currently available:'
325
339
326 """
340 """
327
341
328 quick_guide = "Type '?', '%quickref' or 'help' for help, and 'x?/x??' for object details\n"
329
330 gui_note = """\
331 %guiref -> A brief reference about the graphical user interface.
332 """
333
334 default_banner_parts = ["Python %s\n"%sys.version.split("\n")[0],
342 default_banner_parts = ["Python %s\n"%sys.version.split("\n")[0],
335 "Type 'copyright', 'credits' or 'license' for more information\n" ,
343 "Type 'copyright', 'credits' or 'license' for more information\n" ,
336 'IPython {version} -- An enhanced Interactive Python.\n'.format(version=release.version),
344 "IPython {version} -- An enhanced Interactive Python. Type '?' for help.\n".format(version=release.version),
337 quick_guide
338 ]
345 ]
339
346
340 default_banner = ''.join(default_banner_parts)
347 default_banner = ''.join(default_banner_parts)
General Comments 0
You need to be logged in to leave comments. Login now