tests/call_method2.py | raw changeset files shortlog |
1.1 --- a/tests/call_method2.py Fri May 01 01:02:20 2009 +0200 1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 @@ -1,15 +0,0 @@ 1.4 -#!/usr/bin/env python 1.5 - 1.6 -class C: 1.7 - def f(self, a, b, c): 1.8 - pass 1.9 - 1.10 -c = C() 1.11 - 1.12 -f = c.f 1.13 -f(1, 2, 3) 1.14 - 1.15 -f = C.f 1.16 -f(c, 1, 2, 3) 1.17 - 1.18 -# vim: tabstop=4 expandtab shiftwidth=4