Is there a way to get the argument names a function takes?
def foo(bar, buz):
pass
magical_way(foo) == ["bar", "buz"]
|
|
Use the inspect method from Python's standard library (the cleanest, most solid way to perform introspection). Specifically, inspect.getargspec
completely meets your expressed requirements. |
|||||||
|
|
|||||
|