-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Catch illegal kwds arguments #363
Comments
How is illegal being defined? |
Any function that accepts **kwds should filter them depending on where they are passed to. This only becomes relevant, if you pass **kwds to a function that does not accept **kwds. Then you must ensure that only legal keyword arguments are being passed. |
So there are two cases?
So I am guessing legal ones are the ones that pass the check inside the function/method? Not sure how to approach this issue. One way would be to add decorator to each method but that doesn't seem ideal. |
Closed by #466 |
Catch and report all illegal kwds arguments in all relevant functions
The text was updated successfully, but these errors were encountered: