# HG changeset patch # User Paul Boddie # Date 1489183676 -3600 # Node ID 864170ede7e20b288f7a9384dee8ba0cb4f6789f # Parent c7c355fcf9fba22d0327511b573f76f83d495bf9# Parent 57685f7eee754fdeb1369359c90ff250e8f91a3f Merged changes from the default branch. diff -r c7c355fcf9fb -r 864170ede7e2 tests/targets.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/targets.py Fri Mar 10 23:07:56 2017 +0100 @@ -0,0 +1,16 @@ +class C: + def f(x): + return x + + def g(a, b, c): + return a + + def h(x): + return x + +c = C() +f = c.f +g = c.g +h = c.h + +print g(h(12345), g(f(23456), h(34567), f(45678)), f(56789))