diff options
Diffstat (limited to 'Lib/test/pyclbr_input.py')
-rw-r--r-- | Lib/test/pyclbr_input.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py index b410fcce93..8efc9de75d 100644 --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -10,11 +10,11 @@ class Other(object): class B (object): def bm(self): pass - + class C (B): foo = Other().foo om = Other.om - + d = 10 # XXX: This causes test_pyclbr.py to fail, but only because the @@ -23,9 +23,9 @@ class C (B): # The pyclbr.py module gets this right as it parses the text. # #f = f - + def m(self): pass - + @staticmethod def sm(self): pass |