micropython

Annotated tests/failure/call_func_keyword_excess.py

288:54a2867eb465
2009-11-23 Paul Boddie Added attribute usage registration for branches where more specific attribute usage occurs, but where such usage cannot be merged back into the active usage definition for a given name. This should ensure that attributes are not forgotten because their usage was not merged and carried forward. Added more specific tests.
paul@229 1
#!/usr/bin/env python
paul@229 2
paul@229 3
def g(a, c, b):
paul@229 4
    pass
paul@229 5
paul@229 6
g(1, c=3, b=2, d=4)
paul@229 7
paul@229 8
# vim: tabstop=4 expandtab shiftwidth=4