Lichen

tests/keyword_args.py

1027:dd0745ab8b8a
5 months ago Paul Boddie Reordered GCC arguments to prevent linking failures. Someone decided to change the GCC invocation or linking semantics at some point, meaning that libraries specified "too early" in the argument list no longer provide the symbols required by the program objects, whereas specifying them at the end of the argument list allows those symbols to be found and obtained.
     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 xyz(obj):    10     return obj.f(1, 2, z=3)    11     12 def abc(obj):    13     return obj.f(4, 5, c=6)    14     15 c = C()    16 d = D()    17     18 print xyz(c)                    # 3    19 print abc(d)                    # 6    20     21 try:    22     print xyz(d)                # should raise an exception    23 except TypeError:    24     print "xyz(d): argument cannot be used"