95 </table> |
95 </table> |
96 |
96 |
97 |
97 |
98 <a NAME="Attribute.__init__" ID="Attribute.__init__"></a> |
98 <a NAME="Attribute.__init__" ID="Attribute.__init__"></a> |
99 <h4>Attribute (Constructor)</h4> |
99 <h4>Attribute (Constructor)</h4> |
100 <b>Attribute</b>(<i>module, name, file, lineno</i>) |
100 <b>Attribute</b>(<i>module, name, file, lineno, col_offset=0</i>) |
101 <p> |
101 <p> |
102 Constructor |
102 Constructor |
103 </p> |
103 </p> |
104 |
104 |
105 <dl> |
105 <dl> |
106 |
106 |
107 <dt><i>module</i> (str)</dt> |
107 <dt><i>module</i> (str)</dt> |
108 <dd> |
108 <dd> |
109 name of the module containing this class |
109 name of the module containing this attribute |
110 </dd> |
110 </dd> |
111 <dt><i>name</i> (str)</dt> |
111 <dt><i>name</i> (str)</dt> |
112 <dd> |
112 <dd> |
113 name of this class |
113 name of this attribute |
114 </dd> |
114 </dd> |
115 <dt><i>file</i> (str)</dt> |
115 <dt><i>file</i> (str)</dt> |
116 <dd> |
116 <dd> |
117 filename containing this attribute |
117 file name containing this attribute |
118 </dd> |
118 </dd> |
119 <dt><i>lineno</i> (int)</dt> |
119 <dt><i>lineno</i> (int)</dt> |
120 <dd> |
120 <dd> |
121 linenumber of the class definition |
121 line number of the attribute definition |
|
122 </dd> |
|
123 <dt><i>col_offset</i> (int (optional))</dt> |
|
124 <dd> |
|
125 column number of the attribute definition (defaults to 0) |
122 </dd> |
126 </dd> |
123 </dl> |
127 </dl> |
124 <div align="right"><a href="#top">Up</a></div> |
128 <div align="right"><a href="#top">Up</a></div> |
125 <hr /> |
129 <hr /> |
126 <hr /> |
130 <hr /> |
156 </table> |
160 </table> |
157 |
161 |
158 |
162 |
159 <a NAME="Class.__init__" ID="Class.__init__"></a> |
163 <a NAME="Class.__init__" ID="Class.__init__"></a> |
160 <h4>Class (Constructor)</h4> |
164 <h4>Class (Constructor)</h4> |
161 <b>Class</b>(<i>module, name, superClasses, file, lineno</i>) |
165 <b>Class</b>(<i>module, name, superClasses, file, lineno, col_offset=0</i>) |
162 <p> |
166 <p> |
163 Constructor |
167 Constructor |
164 </p> |
168 </p> |
165 |
169 |
166 <dl> |
170 <dl> |
177 <dd> |
181 <dd> |
178 list of class names this class is inherited from |
182 list of class names this class is inherited from |
179 </dd> |
183 </dd> |
180 <dt><i>file</i> (str)</dt> |
184 <dt><i>file</i> (str)</dt> |
181 <dd> |
185 <dd> |
182 filename containing this class |
186 file name containing this class |
183 </dd> |
187 </dd> |
184 <dt><i>lineno</i> (int)</dt> |
188 <dt><i>lineno</i> (int)</dt> |
185 <dd> |
189 <dd> |
186 linenumber of the class definition |
190 line number of the class definition |
|
191 </dd> |
|
192 <dt><i>col_offset</i> (int (optional))</dt> |
|
193 <dd> |
|
194 column number of the class definition (defaults to 0) |
187 </dd> |
195 </dd> |
188 </dl> |
196 </dl> |
189 <div align="right"><a href="#top">Up</a></div> |
197 <div align="right"><a href="#top">Up</a></div> |
190 <hr /> |
198 <hr /> |
191 <hr /> |
199 <hr /> |
221 </table> |
229 </table> |
222 |
230 |
223 |
231 |
224 <a NAME="Function.__init__" ID="Function.__init__"></a> |
232 <a NAME="Function.__init__" ID="Function.__init__"></a> |
225 <h4>Function (Constructor)</h4> |
233 <h4>Function (Constructor)</h4> |
226 <b>Function</b>(<i>module, name, file, lineno, signature="", separator=", "</i>) |
234 <b>Function</b>(<i>module, name, file, lineno, col_offset=0, signature="", separator=", "</i>) |
227 <p> |
235 <p> |
228 Constructor |
236 Constructor |
229 </p> |
237 </p> |
230 |
238 |
231 <dl> |
239 <dl> |
238 <dd> |
246 <dd> |
239 name of this function |
247 name of this function |
240 </dd> |
248 </dd> |
241 <dt><i>file</i> (str)</dt> |
249 <dt><i>file</i> (str)</dt> |
242 <dd> |
250 <dd> |
243 filename containing this class |
251 file name containing this function |
244 </dd> |
252 </dd> |
245 <dt><i>lineno</i> (int)</dt> |
253 <dt><i>lineno</i> (int)</dt> |
246 <dd> |
254 <dd> |
247 linenumber of the class definition |
255 line number of the function definition |
|
256 </dd> |
|
257 <dt><i>col_offset</i> (int (optional))</dt> |
|
258 <dd> |
|
259 column number of the function definition (defaults to 0) |
248 </dd> |
260 </dd> |
249 <dt><i>signature</i> (str)</dt> |
261 <dt><i>signature</i> (str)</dt> |
250 <dd> |
262 <dd> |
251 parameter list of the method |
263 parameter list of the function |
252 </dd> |
264 </dd> |
253 <dt><i>separator</i> (str)</dt> |
265 <dt><i>separator</i> (str)</dt> |
254 <dd> |
266 <dd> |
255 string separating the parameters |
267 string separating the parameters |
256 </dd> |
268 </dd> |
290 </table> |
302 </table> |
291 |
303 |
292 |
304 |
293 <a NAME="Module.__init__" ID="Module.__init__"></a> |
305 <a NAME="Module.__init__" ID="Module.__init__"></a> |
294 <h4>Module (Constructor)</h4> |
306 <h4>Module (Constructor)</h4> |
295 <b>Module</b>(<i>module, name, file, lineno</i>) |
307 <b>Module</b>(<i>module, name, file, lineno, col_offset=0</i>) |
296 <p> |
308 <p> |
297 Constructor |
309 Constructor |
298 </p> |
310 </p> |
299 |
311 |
300 <dl> |
312 <dl> |
301 |
313 |
302 <dt><i>module</i> (str)</dt> |
314 <dt><i>module</i> (str)</dt> |
303 <dd> |
315 <dd> |
304 name of the module containing this class |
316 name of the module containing this module |
305 </dd> |
317 </dd> |
306 <dt><i>name</i> (str)</dt> |
318 <dt><i>name</i> (str)</dt> |
307 <dd> |
319 <dd> |
308 name of this class |
320 name of this module |
309 </dd> |
321 </dd> |
310 <dt><i>file</i> (str)</dt> |
322 <dt><i>file</i> (str)</dt> |
311 <dd> |
323 <dd> |
312 filename containing this class |
324 file name containing this module |
313 </dd> |
325 </dd> |
314 <dt><i>lineno</i> (int)</dt> |
326 <dt><i>lineno</i> (int)</dt> |
315 <dd> |
327 <dd> |
316 linenumber of the class definition |
328 linenumber of the module definition |
|
329 </dd> |
|
330 <dt><i>col_offset</i> (int (optional))</dt> |
|
331 <dd> |
|
332 column number of the module definition (defaults to 0) |
317 </dd> |
333 </dd> |
318 </dl> |
334 </dl> |
319 <div align="right"><a href="#top">Up</a></div> |
335 <div align="right"><a href="#top">Up</a></div> |
320 <hr /> |
336 <hr /> |
321 <hr /> |
337 <hr /> |