- Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathpydocfodder.py
188 lines (161 loc) · 5.24 KB
/
pydocfodder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
"""Something just to look at via pydoc."""
importtypes
defglobal_func(x, y):
"""Module global function"""
defglobal_func2(x, y):
"""Module global function 2"""
classA:
"A class."
defA_method(self):
"Method defined in A."
defAB_method(self):
"Method defined in A and B."
defAC_method(self):
"Method defined in A and C."
defAD_method(self):
"Method defined in A and D."
defABC_method(self):
"Method defined in A, B and C."
defABD_method(self):
"Method defined in A, B and D."
defACD_method(self):
"Method defined in A, C and D."
defABCD_method(self):
"Method defined in A, B, C and D."
defA_classmethod(cls, x):
"A class method defined in A."
A_classmethod=classmethod(A_classmethod)
defA_staticmethod(x, y):
"A static method defined in A."
A_staticmethod=staticmethod(A_staticmethod)
def_getx(self):
"A property getter function."
def_setx(self, value):
"A property setter function."
def_delx(self):
"A property deleter function."
A_property=property(fdel=_delx, fget=_getx, fset=_setx,
doc="A sample property defined in A.")
A_int_alias=int
classB(A):
"A class, derived from A."
defAB_method(self):
"Method defined in A and B."
defABC_method(self):
"Method defined in A, B and C."
defABD_method(self):
"Method defined in A, B and D."
defABCD_method(self):
"Method defined in A, B, C and D."
defB_method(self):
"Method defined in B."
defBC_method(self):
"Method defined in B and C."
defBD_method(self):
"Method defined in B and D."
defBCD_method(self):
"Method defined in B, C and D."
@classmethod
defB_classmethod(cls, x):
"A class method defined in B."
global_func=global_func# same name
global_func_alias=global_func
global_func2_alias=global_func2
B_classmethod_alias=B_classmethod
A_classmethod_ref=A.A_classmethod
A_staticmethod=A.A_staticmethod# same name
A_staticmethod_alias=A.A_staticmethod
A_method_ref=A().A_method
A_method_alias=A.A_method
B_method_alias=B_method
count=list.count# same name
list_count=list.count
__repr__=object.__repr__# same name
object_repr=object.__repr__
get= {}.get# same name
dict_get= {}.get
B.B_classmethod_ref=B.B_classmethod
classC(A):
"A class, derived from A."
defAC_method(self):
"Method defined in A and C."
defABC_method(self):
"Method defined in A, B and C."
defACD_method(self):
"Method defined in A, C and D."
defABCD_method(self):
"Method defined in A, B, C and D."
defBC_method(self):
"Method defined in B and C."
defBCD_method(self):
"Method defined in B, C and D."
defC_method(self):
"Method defined in C."
defCD_method(self):
"Method defined in C and D."
classD(B, C):
"""A class, derived from B and C.
"""
defAD_method(self):
"Method defined in A and D."
defABD_method(self):
"Method defined in A, B and D."
defACD_method(self):
"Method defined in A, C and D."
defABCD_method(self):
"Method defined in A, B, C and D."
defBD_method(self):
"Method defined in B and D."
defBCD_method(self):
"Method defined in B, C and D."
defCD_method(self):
"Method defined in C and D."
defD_method(self):
"Method defined in D."
classFunkyProperties(object):
"""From SF bug 472347, by Roeland Rengelink.
Property getters etc may not be vanilla functions or methods,
and this used to make GUI pydoc blow up.
"""
def__init__(self):
self.desc= {'x':0}
classget_desc:
def__init__(self, attr):
self.attr=attr
def__call__(self, inst):
print('Get called', self, inst)
returninst.desc[self.attr]
classset_desc:
def__init__(self, attr):
self.attr=attr
def__call__(self, inst, val):
print('Set called', self, inst, val)
inst.desc[self.attr] =val
classdel_desc:
def__init__(self, attr):
self.attr=attr
def__call__(self, inst):
print('Del called', self, inst)
delinst.desc[self.attr]
x=property(get_desc('x'), set_desc('x'), del_desc('x'), 'prop x')
submodule=types.ModuleType(__name__+'.submodule',
"""A submodule, which should appear in its parent's summary""")
global_func_alias=global_func
A_classmethod=A.A_classmethod# same name
A_classmethod2=A.A_classmethod
A_classmethod3=B.A_classmethod
A_staticmethod=A.A_staticmethod# same name
A_staticmethod_alias=A.A_staticmethod
A_staticmethod_ref=A().A_staticmethod
A_staticmethod_ref2=B().A_staticmethod
A_method=A().A_method# same name
A_method2=A().A_method
A_method3=B().A_method
B_method=B.B_method# same name
B_method2=B.B_method
count=list.count# same name
list_count=list.count
__repr__=object.__repr__# same name
object_repr=object.__repr__
get= {}.get# same name
dict_get= {}.get