I'm building a debugging tool.
IPython lets me do stuff like
MyCls??
And it will show me the source.
|
I'm building a debugging tool. IPython lets me do stuff like
And it will show me the source. |
|||
|
|
or
There are more |
|||
|
|
|
Here's a pretty good overview of many of Python's meta-info capabilities: |
|||
|
|
|
If you just want to see the source, inspect.getsource is a very direct way to do that; for more advanced uses (getting the source file, line numbers, etc), see other functions in |
|||
|
|