aboutsummaryrefslogtreecommitdiff
path: root/tests/basics/fun-kwonly.py
AgeCommit message (Collapse)Author
2014-07-05tests: Rename test scripts, changing - to _ for consistency.Damien George
From now on, all new tests must use underscore. Addresses issue #727.
2014-06-08tests: Add more tests for default keyword-only args.Damien George
2014-06-07py: Implement default keyword only args.Damien George
Should finish addressing issue #524.
2014-04-27py: Implement keyword-only args.Damien George
Implements 'def f(*, a)' and 'def f(*a, b)', but not default keyword-only args, eg 'def f(*, a=1)'. Partially addresses issue #524.