Show More
@@ -573,6 +573,14 Currently the magic system has the following functions:\n""" | |||
|
573 | 573 | self.shell._inspect('pinfo', oname, detail_level=detail_level, |
|
574 | 574 | namespaces=namespaces) |
|
575 | 575 | |
|
576 | def magic_pinfo2(self, parameter_s='', namespaces=None): | |
|
577 | """Provide extra detailed information about an object. | |
|
578 | ||
|
579 | '%pinfo2 object' is just a synonym for object?? or ??object.""" | |
|
580 | print 'pinfo2 par: <%s>' % parameter_s # dbg | |
|
581 | self.shell._inspect('pinfo', parameter_s, detail_level=1, | |
|
582 | namespaces=namespaces) | |
|
583 | ||
|
576 | 584 | def magic_pdef(self, parameter_s='', namespaces=None): |
|
577 | 585 | """Print the definition header for any callable object. |
|
578 | 586 |
General Comments 0
You need to be logged in to leave comments.
Login now