We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 856efa9 + 0019eb7 commit d49f632Copy full SHA for d49f632
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
mydir.py
@@ -1,6 +1,6 @@
1
#!python
2
"""
3
-mydir.py: a module that lists the namespaces of other module
+mydir.py: a module that list the namespaces of other modules
4
5
from __future__ import print_function
6
0 commit comments