micropython

Annotated tests/failure/call_func_keyword_excess.py

579:9df30d738ec1
2012-07-07 Paul Boddie Filter out __init__.py files when looking for submodule files.
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