micropython

tests/failure/call_func_keyword_excess.py

803:39ba98ecc020
2014-06-01 Paul Boddie Fixed a docstring to describe the method's actual return value. syspython-as-target
     1 #!/usr/bin/env python     2      3 def g(a, c, b):     4     pass     5      6 g(1, c=3, b=2, d=4)     7      8 # vim: tabstop=4 expandtab shiftwidth=4