Tagged Questions
4
votes
6answers
1k views
The best way to invoke methods in Python class declarations?
Say I am declaring a class C and a few of the declarations are very similar. I'd like to use a function f to reduce code repetition for these declarations. It's possible to just declare and use f as ...
1
vote
2answers
226 views
Is there a way to invoke a Python function with the wrong number of arguments without invoking a TypeError?
When you invoke a function with the wrong number of arguments, or with a keyword argument that isn't in its definition, you get a TypeError. I'd like a piece of code to take a callback and invoke it ...