##// END OF EJS Templates
some manual fixes
Matthias Bussonnier -
Show More
@@ -2061,10 +2061,8 b' class InteractiveShell(SingletonConfigurable):'
2061 2061 A string of text to be completed on. It can be given as empty and
2062 2062 instead a line/position pair are given. In this case, the
2063 2063 completer itself will split the line like readline does.
2064
2065 2064 line : string, optional
2066 2065 The complete line that text is part of.
2067
2068 2066 cursor_pos : int, optional
2069 2067 The position of the cursor on the input line.
2070 2068
@@ -2606,7 +2604,7 b' class InteractiveShell(SingletonConfigurable):'
2606 2604 ----------
2607 2605 fname : string
2608 2606 The name of the file to be executed.
2609 where : tuple
2607 *where : tuple
2610 2608 One or two namespaces, passed to execfile() as (globals,locals).
2611 2609 If only one is given, it is passed as both.
2612 2610 exit_ignore : bool (False)
@@ -428,7 +428,6 b' class Inspector(Colorable):'
428 428
429 429 Examples
430 430 --------
431
432 431 In [1]: class NoInit:
433 432 ...: pass
434 433
@@ -575,8 +574,7 b' class Inspector(Colorable):'
575 574 """Retrieve an info dict and format it.
576 575
577 576 Parameters
578 ==========
579
577 ----------
580 578 obj: any
581 579 Object to inspect and return info from
582 580 oname: str (default: ''):
@@ -716,11 +714,10 b' class Inspector(Colorable):'
716 714 """Compute a dict with detailed information about an object.
717 715
718 716 Parameters
719 ==========
720
717 ----------
721 718 obj: any
722 719 An object to find information about
723 oname: str (default: ''):
720 oname : str (default: '')
724 721 Name of the variable pointing to `obj`.
725 722 info: (default: None)
726 723 A struct (dict like with attr access) with some information fields
@@ -729,8 +726,7 b' class Inspector(Colorable):'
729 726 If set to 1, more information is given.
730 727
731 728 Returns
732 =======
733
729 -------
734 730 An object info dict with known fields from `info_fields`. Keys are
735 731 strings, values are string or None.
736 732 """
General Comments 0
You need to be logged in to leave comments. Login now