##// END OF EJS Templates
Fixed objs in the display.py docstrings.
luttik -
Show More
@@ -57,7 +57,7 b' def _display_mimetype(mimetype, objs, raw=False, metadata=None):'
57 57 ----------
58 58 mimetype : str
59 59 The mimetype to be published (e.g. 'image/png')
60 objs : tuple of objects
60 *objs : object
61 61 The Python objects to display, or if raw=True raw text data to
62 62 display.
63 63 raw : bool
@@ -139,7 +139,7 b' def display(*objs, include=None, exclude=None, metadata=None, transient=None, di'
139 139
140 140 Parameters
141 141 ----------
142 objs : tuple of objects
142 *objs : object
143 143 The Python objects to display.
144 144 raw : bool, optional
145 145 Are the objects to be displayed already mimetype-keyed dicts of raw display data,
@@ -405,7 +405,7 b' def display_pretty(*objs, **kwargs):'
405 405
406 406 Parameters
407 407 ----------
408 objs : tuple of objects
408 *objs : object
409 409 The Python objects to display, or if raw=True raw text data to
410 410 display.
411 411 raw : bool
@@ -425,7 +425,7 b' def display_html(*objs, **kwargs):'
425 425
426 426 Parameters
427 427 ----------
428 objs : tuple of objects
428 *objs : object
429 429 The Python objects to display, or if raw=True raw HTML data to
430 430 display.
431 431 raw : bool
@@ -442,7 +442,7 b' def display_markdown(*objs, **kwargs):'
442 442
443 443 Parameters
444 444 ----------
445 objs : tuple of objects
445 *objs : object
446 446 The Python objects to display, or if raw=True raw markdown data to
447 447 display.
448 448 raw : bool
@@ -460,7 +460,7 b' def display_svg(*objs, **kwargs):'
460 460
461 461 Parameters
462 462 ----------
463 objs : tuple of objects
463 *objs : object
464 464 The Python objects to display, or if raw=True raw svg data to
465 465 display.
466 466 raw : bool
@@ -477,7 +477,7 b' def display_png(*objs, **kwargs):'
477 477
478 478 Parameters
479 479 ----------
480 objs : tuple of objects
480 *objs : object
481 481 The Python objects to display, or if raw=True raw png data to
482 482 display.
483 483 raw : bool
@@ -494,7 +494,7 b' def display_jpeg(*objs, **kwargs):'
494 494
495 495 Parameters
496 496 ----------
497 objs : tuple of objects
497 *objs : object
498 498 The Python objects to display, or if raw=True raw JPEG data to
499 499 display.
500 500 raw : bool
@@ -511,7 +511,7 b' def display_latex(*objs, **kwargs):'
511 511
512 512 Parameters
513 513 ----------
514 objs : tuple of objects
514 *objs : object
515 515 The Python objects to display, or if raw=True raw latex data to
516 516 display.
517 517 raw : bool
@@ -530,7 +530,7 b' def display_json(*objs, **kwargs):'
530 530
531 531 Parameters
532 532 ----------
533 objs : tuple of objects
533 *objs : object
534 534 The Python objects to display, or if raw=True raw json data to
535 535 display.
536 536 raw : bool
@@ -547,7 +547,7 b' def display_javascript(*objs, **kwargs):'
547 547
548 548 Parameters
549 549 ----------
550 objs : tuple of objects
550 *objs : object
551 551 The Python objects to display, or if raw=True raw javascript data to
552 552 display.
553 553 raw : bool
@@ -564,7 +564,7 b' def display_pdf(*objs, **kwargs):'
564 564
565 565 Parameters
566 566 ----------
567 objs : tuple of objects
567 *objs : object
568 568 The Python objects to display, or if raw=True raw javascript data to
569 569 display.
570 570 raw : bool
General Comments 0
You need to be logged in to leave comments. Login now