12
votes
Can you list the keyword arguments a Python function receives?
A little nicer than inspecting the code object directly and working out the variables is to use the inspect module.
>>> import inspect
>>> def func(a,b,c=42, *args …
18
votes
Getting method parameter names in python
Take a look at the inspect module - this will do the inspection of the various code object properties for you.
>>> inspect.getargspec(aMethod)
(['arg1', 'arg2'], None, None …
2
votes
python: determine if a class is nested
Really a nested class is no different from any other class - it just happens to be defined somewhere else than the top-level namespace (inside another class instead). If we modify the description …
4
votes
Python introspection: How to get an ‘unsorted’ list of object attributes?
Note that that parsing is already done for you in inspect - take a look at inspect.findsource, which searches the module for the class definition and returns the source and line number …
4
votes
How do I look inside a Python object?
If this is for exploration to see what's going on, I'd recommend looking at IPython. This adds various shortcuts to obtain an objects do …
