micropython

Annotated tests/failure/call_func_keyword_excess.py

432:1964e5898e68
2011-06-14 Paul Boddie Fixed negation of operator method results in other operator methods. Added NotImplementedType as an automatically generated class.
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