summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/cpp_parameters_runme.py
Commit message (Collapse)AuthorAgeFilesLines
* Python -builtin constructors silently ignored keyword arguments.William S Fulton2020-01-131-0/+296
Instead of silenty ignoring them, now a "TypeError: f() takes no keyword arguments" exception is thrown if keyword arguments are used. Hence constructors and normal methods/functions behave in the same way. Closes issue #1595