micropython

tests/failure/argument_surplus.py

655:c52c50dca9dc
2013-05-01 Paul Boddie Added some tests of dynamic attribute access using getattr and string constants. syspython-as-target
     1 #!/usr/bin/env python     2      3 def f(a, b, c):     4     pass     5      6 f(1, 2, 3)     7 f(1, 2, 3, 4)     8      9 # vim: tabstop=4 expandtab shiftwidth=4