We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d778b8f commit fc6c3bcCopy full SHA for fc6c3bc
listtree.py
@@ -51,22 +51,17 @@ def __str__(self):
51
52
53
def tester(listerclass, sept=False):
54
-
55
class Super:
56
57
- def __init__(self):
+ def __init__(self):
58
self.data1 = 'spam'
59
60
- def ham(self):
+ def ham(self):
61
pass
62
63
class Sub(Super, listerclass):
64
65
def __init__(self):
66
Super.__init__(self)
67
self.data2 = 'eggs'
68
self.data3 = 42
69
70
def spam(self):
71
72
0 commit comments