micropython

Annotated tests/failure/argument_surplus.py

579:9df30d738ec1
2012-07-07 Paul Boddie Filter out __init__.py files when looking for submodule files.
paul@59 1
#!/usr/bin/env python
paul@59 2
paul@59 3
def f(a, b, c):
paul@59 4
    pass
paul@59 5
paul@59 6
f(1, 2, 3)
paul@59 7
f(1, 2, 3, 4)
paul@59 8
paul@59 9
# vim: tabstop=4 expandtab shiftwidth=4