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