##// END OF EJS Templates
Modified ipython banner...
Yuri Numerov -
Show More
@@ -325,20 +325,16 b' The following magic functions are currently available:'
325
325
326 """
326 """
327
327
328 quick_guide = """\
328 quick_guide = "Type '?', '%quickref' or 'help' for help, and 'x?/x??' for object details\n"
329 ? -> Introduction and overview of IPython's features.
329
330 %quickref -> Quick reference.
330 gui_note = """\
331 help -> Python's own help system.
331 %guiref -> A brief reference about the graphical user interface.
332 object? -> Details about 'object', use 'object??' for extra details.
333 """
332 """
334
333
335 default_banner_parts = [
334 default_banner_parts = ["Python %s\n"%sys.version.split("\n")[0],
336 'Python %s\n' % (sys.version.split('\n')[0],),
335 "Type 'copyright', 'credits' or 'license' for more information\n" ,
337 'Type "copyright", "credits" or "license" for more information.\n\n',
336 'IPython {version} -- An enhanced Interactive Python.\n'.format(version=release.version),
338 'IPython {version} -- An enhanced Interactive Python.\n'.format(
337 quick_guide
339 version=release.version,
340 ),
341 quick_guide
342 ]
338 ]
343
339
344 default_banner = ''.join(default_banner_parts)
340 default_banner = ''.join(default_banner_parts)
General Comments 0
You need to be logged in to leave comments. Login now