Lichen

tests/keyword_args_bad.py

579:d3811f95c60e
2017-02-13 Paul Boddie Moved minimum parameter information to parameter tables, adding maximum parameter information (also fixing tests in the __invoke function), and thus making parameter tables distinct according to minimum parameters and parameter member details. This changes the __attr size to a single word and thus reduces the program data volume even further. method-wrapper-for-context
     1 class C:     2     def f(self, x, y, z):     3         return z     4      5 class D:     6     def f(self, a, b, c):     7         return c     8      9 def pqr(obj):    10     return obj.f(1, 2, r=3)     # no corresponding function    11     12 c = C()    13 d = D()    14     15 print pqr(c)                    # should fail