##// 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 = """\
329 ? -> Introduction and overview of IPython's features.
330 %quickref -> Quick reference.
331 help -> Python's own help system.
332 object? -> Details about 'object', use 'object??' for extra details.
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.
333 332 """
334 333
335 default_banner_parts = [
336 'Python %s\n' % (sys.version.split('\n')[0],),
337 'Type "copyright", "credits" or "license" for more information.\n\n',
338 'IPython {version} -- An enhanced Interactive Python.\n'.format(
339 version=release.version,
340 ),
341 quick_guide
334 default_banner_parts = ["Python %s\n"%sys.version.split("\n")[0],
335 "Type 'copyright', 'credits' or 'license' for more information\n" ,
336 'IPython {version} -- An enhanced Interactive Python.\n'.format(version=release.version),
337 quick_guide
342 338 ]
343 339
344 340 default_banner = ''.join(default_banner_parts)
General Comments 0
You need to be logged in to leave comments. Login now