Documentation/Source/eric5.Utilities.pyflakes.messages.html

changeset 3208
884465a61753
parent 3207
6cf664694e3c
equal deleted inserted replaced
3207:6cf664694e3c 3208:884465a61753
28 <tr><td>None</td></tr> 28 <tr><td>None</td></tr>
29 </table> 29 </table>
30 <h3>Classes</h3> 30 <h3>Classes</h3>
31 <table> 31 <table>
32 <tr> 32 <tr>
33 <td><a href="#DoctestSyntaxError">DoctestSyntaxError</a></td>
34 <td>Class defining the "Doctest syntax Error" message.</td>
35 </tr><tr>
33 <td><a href="#DuplicateArgument">DuplicateArgument</a></td> 36 <td><a href="#DuplicateArgument">DuplicateArgument</a></td>
34 <td>Class defining the "Duplicate Argument" message.</td> 37 <td>Class defining the "Duplicate Argument" message.</td>
35 </tr><tr> 38 </tr><tr>
36 <td><a href="#ImportShadowedByLoopVar">ImportShadowedByLoopVar</a></td> 39 <td><a href="#ImportShadowedByLoopVar">ImportShadowedByLoopVar</a></td>
37 <td>Class defining the "Import Shadowed By Loop Var" message.</td> 40 <td>Class defining the "Import Shadowed By Loop Var" message.</td>
43 <td>Class defining the "Late Future Import" message.</td> 46 <td>Class defining the "Late Future Import" message.</td>
44 </tr><tr> 47 </tr><tr>
45 <td><a href="#Message">Message</a></td> 48 <td><a href="#Message">Message</a></td>
46 <td>Class defining the base for all specific message classes.</td> 49 <td>Class defining the base for all specific message classes.</td>
47 </tr><tr> 50 </tr><tr>
48 <td><a href="#RedefinedFunction">RedefinedFunction</a></td> 51 <td><a href="#Redefined">Redefined</a></td>
49 <td>Class defining the "Redefined Function" message.</td> 52 <td>Class defining the "Redefined" message.</td>
53 </tr><tr>
54 <td><a href="#RedefinedInListComp">RedefinedInListComp</a></td>
55 <td>Class defining the "Redefined In List Comprehension" message.</td>
50 </tr><tr> 56 </tr><tr>
51 <td><a href="#RedefinedWhileUnused">RedefinedWhileUnused</a></td> 57 <td><a href="#RedefinedWhileUnused">RedefinedWhileUnused</a></td>
52 <td>Class defining the "Redefined While Unused" message.</td> 58 <td>Class defining the "Redefined While Unused" message.</td>
53 </tr><tr> 59 </tr><tr>
54 <td><a href="#UndefinedExport">UndefinedExport</a></td> 60 <td><a href="#UndefinedExport">UndefinedExport</a></td>
70 <h3>Functions</h3> 76 <h3>Functions</h3>
71 <table> 77 <table>
72 <tr><td>None</td></tr> 78 <tr><td>None</td></tr>
73 </table> 79 </table>
74 <hr /><hr /> 80 <hr /><hr />
81 <a NAME="DoctestSyntaxError" ID="DoctestSyntaxError"></a>
82 <h2>DoctestSyntaxError</h2>
83 <p>
84 Class defining the "Doctest syntax Error" message.
85 </p>
86 <h3>Derived from</h3>
87 Message
88 <h3>Class Attributes</h3>
89 <table>
90 <tr><td>message</td></tr><tr><td>message_id</td></tr>
91 </table>
92 <h3>Class Methods</h3>
93 <table>
94 <tr><td>None</td></tr>
95 </table>
96 <h3>Methods</h3>
97 <table>
98 <tr>
99 <td><a href="#DoctestSyntaxError.__init__">DoctestSyntaxError</a></td>
100 <td>Constructor</td>
101 </tr>
102 </table>
103 <h3>Static Methods</h3>
104 <table>
105 <tr><td>None</td></tr>
106 </table>
107 <a NAME="DoctestSyntaxError.__init__" ID="DoctestSyntaxError.__init__"></a>
108 <h4>DoctestSyntaxError (Constructor)</h4>
109 <b>DoctestSyntaxError</b>(<i>filename, loc, position=None</i>)
110 <p>
111 Constructor
112 </p><dl>
113 <dt><i>filename</i></dt>
114 <dd>
115 name of the file (string)
116 </dd><dt><i>loc</i></dt>
117 <dd>
118 location of the issue
119 </dd><dt><i>position</i></dt>
120 <dd>
121 position of the syntax error
122 </dd>
123 </dl>
124 <div align="right"><a href="#top">Up</a></div>
125 <hr /><hr />
75 <a NAME="DuplicateArgument" ID="DuplicateArgument"></a> 126 <a NAME="DuplicateArgument" ID="DuplicateArgument"></a>
76 <h2>DuplicateArgument</h2> 127 <h2>DuplicateArgument</h2>
77 <p> 128 <p>
78 Class defining the "Duplicate Argument" message. 129 Class defining the "Duplicate Argument" message.
79 </p> 130 </p>
98 <table> 149 <table>
99 <tr><td>None</td></tr> 150 <tr><td>None</td></tr>
100 </table> 151 </table>
101 <a NAME="DuplicateArgument.__init__" ID="DuplicateArgument.__init__"></a> 152 <a NAME="DuplicateArgument.__init__" ID="DuplicateArgument.__init__"></a>
102 <h4>DuplicateArgument (Constructor)</h4> 153 <h4>DuplicateArgument (Constructor)</h4>
103 <b>DuplicateArgument</b>(<i>filename, lineno, name</i>) 154 <b>DuplicateArgument</b>(<i>filename, loc, name</i>)
104 <p> 155 <p>
105 Constructor 156 Constructor
106 </p><dl> 157 </p><dl>
107 <dt><i>filename</i></dt> 158 <dt><i>filename</i></dt>
108 <dd> 159 <dd>
109 name of the file (string) 160 name of the file (string)
110 </dd><dt><i>lineno</i></dt> 161 </dd><dt><i>loc</i></dt>
111 <dd> 162 <dd>
112 line number (integer) 163 location of the issue
113 </dd><dt><i>name</i></dt> 164 </dd><dt><i>name</i></dt>
114 <dd> 165 <dd>
115 name of the duplicate argument (string) 166 name of the duplicate argument (string)
116 </dd> 167 </dd>
117 </dl> 168 </dl>
143 <table> 194 <table>
144 <tr><td>None</td></tr> 195 <tr><td>None</td></tr>
145 </table> 196 </table>
146 <a NAME="ImportShadowedByLoopVar.__init__" ID="ImportShadowedByLoopVar.__init__"></a> 197 <a NAME="ImportShadowedByLoopVar.__init__" ID="ImportShadowedByLoopVar.__init__"></a>
147 <h4>ImportShadowedByLoopVar (Constructor)</h4> 198 <h4>ImportShadowedByLoopVar (Constructor)</h4>
148 <b>ImportShadowedByLoopVar</b>(<i>filename, lineno, name, orig_lineno</i>) 199 <b>ImportShadowedByLoopVar</b>(<i>filename, loc, name, orig_loc</i>)
149 <p> 200 <p>
150 Constructor 201 Constructor
151 </p><dl> 202 </p><dl>
152 <dt><i>filename</i></dt> 203 <dt><i>filename</i></dt>
153 <dd> 204 <dd>
154 name of the file (string) 205 name of the file (string)
155 </dd><dt><i>lineno</i></dt> 206 </dd><dt><i>loc</i></dt>
156 <dd> 207 <dd>
157 line number (integer) 208 location of the issue
158 </dd><dt><i>name</i></dt> 209 </dd><dt><i>name</i></dt>
159 <dd> 210 <dd>
160 name of the shadowed import (string) 211 name of the shadowed import (string)
161 </dd><dt><i>orig_lineno</i></dt> 212 </dd><dt><i>orig_loc</i></dt>
162 <dd> 213 <dd>
163 line number of the import (integer) 214 location of the import
164 </dd> 215 </dd>
165 </dl> 216 </dl>
166 <div align="right"><a href="#top">Up</a></div> 217 <div align="right"><a href="#top">Up</a></div>
167 <hr /><hr /> 218 <hr /><hr />
168 <a NAME="ImportStarUsed" ID="ImportStarUsed"></a> 219 <a NAME="ImportStarUsed" ID="ImportStarUsed"></a>
191 <table> 242 <table>
192 <tr><td>None</td></tr> 243 <tr><td>None</td></tr>
193 </table> 244 </table>
194 <a NAME="ImportStarUsed.__init__" ID="ImportStarUsed.__init__"></a> 245 <a NAME="ImportStarUsed.__init__" ID="ImportStarUsed.__init__"></a>
195 <h4>ImportStarUsed (Constructor)</h4> 246 <h4>ImportStarUsed (Constructor)</h4>
196 <b>ImportStarUsed</b>(<i>filename, lineno, modname</i>) 247 <b>ImportStarUsed</b>(<i>filename, loc, modname</i>)
197 <p> 248 <p>
198 Constructor 249 Constructor
199 </p><dl> 250 </p><dl>
200 <dt><i>filename</i></dt> 251 <dt><i>filename</i></dt>
201 <dd> 252 <dd>
202 name of the file (string) 253 name of the file (string)
203 </dd><dt><i>lineno</i></dt> 254 </dd><dt><i>loc</i></dt>
204 <dd> 255 <dd>
205 line number (integer) 256 location of the issue
206 </dd><dt><i>modname</i></dt> 257 </dd><dt><i>modname</i></dt>
207 <dd> 258 <dd>
208 name of the module imported using star import (string) 259 name of the module imported using star import (string)
209 </dd> 260 </dd>
210 </dl> 261 </dl>
236 <table> 287 <table>
237 <tr><td>None</td></tr> 288 <tr><td>None</td></tr>
238 </table> 289 </table>
239 <a NAME="LateFutureImport.__init__" ID="LateFutureImport.__init__"></a> 290 <a NAME="LateFutureImport.__init__" ID="LateFutureImport.__init__"></a>
240 <h4>LateFutureImport (Constructor)</h4> 291 <h4>LateFutureImport (Constructor)</h4>
241 <b>LateFutureImport</b>(<i>filename, lineno, names</i>) 292 <b>LateFutureImport</b>(<i>filename, loc, names</i>)
242 <p> 293 <p>
243 Constructor 294 Constructor
244 </p><dl> 295 </p><dl>
245 <dt><i>filename</i></dt> 296 <dt><i>filename</i></dt>
246 <dd> 297 <dd>
247 name of the file (string) 298 name of the file (string)
248 </dd><dt><i>lineno</i></dt> 299 </dd><dt><i>loc</i></dt>
249 <dd> 300 <dd>
250 line number (integer) 301 location of the issue
251 </dd><dt><i>names</i></dt> 302 </dd><dt><i>names</i></dt>
252 <dd> 303 <dd>
253 names of the imported futures (string) 304 names of the imported futures (string)
254 </dd> 305 </dd>
255 </dl> 306 </dl>
287 <table> 338 <table>
288 <tr><td>None</td></tr> 339 <tr><td>None</td></tr>
289 </table> 340 </table>
290 <a NAME="Message.__init__" ID="Message.__init__"></a> 341 <a NAME="Message.__init__" ID="Message.__init__"></a>
291 <h4>Message (Constructor)</h4> 342 <h4>Message (Constructor)</h4>
292 <b>Message</b>(<i>filename, lineno</i>) 343 <b>Message</b>(<i>filename, loc</i>)
293 <p> 344 <p>
294 Constructor 345 Constructor
295 </p><dl> 346 </p><dl>
296 <dt><i>filename</i></dt> 347 <dt><i>filename</i></dt>
297 <dd> 348 <dd>
298 name of the file (string) 349 name of the file (string)
299 </dd><dt><i>lineno</i></dt> 350 </dd><dt><i>loc</i></dt>
300 <dd> 351 <dd>
301 line number (integer) 352 location of the issue
302 </dd> 353 </dd>
303 </dl><a NAME="Message.__str__" ID="Message.__str__"></a> 354 </dl><a NAME="Message.__str__" ID="Message.__str__"></a>
304 <h4>Message.__str__</h4> 355 <h4>Message.__str__</h4>
305 <b>__str__</b>(<i></i>) 356 <b>__str__</b>(<i></i>)
306 <p> 357 <p>
322 message arguments (string, integer, string, list) 373 message arguments (string, integer, string, list)
323 </dd> 374 </dd>
324 </dl> 375 </dl>
325 <div align="right"><a href="#top">Up</a></div> 376 <div align="right"><a href="#top">Up</a></div>
326 <hr /><hr /> 377 <hr /><hr />
327 <a NAME="RedefinedFunction" ID="RedefinedFunction"></a> 378 <a NAME="Redefined" ID="Redefined"></a>
328 <h2>RedefinedFunction</h2> 379 <h2>Redefined</h2>
329 <p> 380 <p>
330 Class defining the "Redefined Function" message. 381 Class defining the "Redefined" message.
331 </p> 382 </p>
332 <h3>Derived from</h3> 383 <h3>Derived from</h3>
333 Message 384 Message
334 <h3>Class Attributes</h3> 385 <h3>Class Attributes</h3>
335 <table> 386 <table>
336 <tr><td>message</td></tr><tr><td>message_id</td></tr> 387 <tr><td>message</td></tr><tr><td>message_id</td></tr>
337 </table> 388 </table>
338 <h3>Class Methods</h3> 389 <h3>Class Methods</h3>
339 <table> 390 <table>
340 <tr><td>None</td></tr> 391 <tr><td>None</td></tr>
341 </table> 392 </table>
342 <h3>Methods</h3> 393 <h3>Methods</h3>
343 <table> 394 <table>
344 <tr> 395 <tr>
345 <td><a href="#RedefinedFunction.__init__">RedefinedFunction</a></td> 396 <td><a href="#Redefined.__init__">Redefined</a></td>
346 <td>Constructor</td> 397 <td>Constructor</td>
347 </tr> 398 </tr>
348 </table> 399 </table>
349 <h3>Static Methods</h3> 400 <h3>Static Methods</h3>
350 <table> 401 <table>
351 <tr><td>None</td></tr> 402 <tr><td>None</td></tr>
352 </table> 403 </table>
353 <a NAME="RedefinedFunction.__init__" ID="RedefinedFunction.__init__"></a> 404 <a NAME="Redefined.__init__" ID="Redefined.__init__"></a>
354 <h4>RedefinedFunction (Constructor)</h4> 405 <h4>Redefined (Constructor)</h4>
355 <b>RedefinedFunction</b>(<i>filename, lineno, name, orig_lineno</i>) 406 <b>Redefined</b>(<i>filename, loc, name, orig_loc</i>)
356 <p> 407 <p>
357 Constructor 408 Constructor
358 </p><dl> 409 </p><dl>
359 <dt><i>filename</i></dt> 410 <dt><i>filename</i></dt>
360 <dd> 411 <dd>
361 name of the file (string) 412 name of the file (string)
362 </dd><dt><i>lineno</i></dt> 413 </dd><dt><i>loc</i></dt>
363 <dd> 414 <dd>
364 line number (integer) 415 location of the issue
365 </dd><dt><i>name</i></dt> 416 </dd><dt><i>name</i></dt>
366 <dd> 417 <dd>
367 name of the redefined function (string) 418 name of the redefined function (string)
368 </dd><dt><i>orig_lineno</i></dt> 419 </dd><dt><i>orig_loc</i></dt>
369 <dd> 420 <dd>
370 line number of the original definition (integer) 421 location of the original definition
422 </dd>
423 </dl>
424 <div align="right"><a href="#top">Up</a></div>
425 <hr /><hr />
426 <a NAME="RedefinedInListComp" ID="RedefinedInListComp"></a>
427 <h2>RedefinedInListComp</h2>
428 <p>
429 Class defining the "Redefined In List Comprehension" message.
430 </p>
431 <h3>Derived from</h3>
432 Message
433 <h3>Class Attributes</h3>
434 <table>
435 <tr><td>message</td></tr><tr><td>message_id</td></tr>
436 </table>
437 <h3>Class Methods</h3>
438 <table>
439 <tr><td>None</td></tr>
440 </table>
441 <h3>Methods</h3>
442 <table>
443 <tr>
444 <td><a href="#RedefinedInListComp.__init__">RedefinedInListComp</a></td>
445 <td>Constructor</td>
446 </tr>
447 </table>
448 <h3>Static Methods</h3>
449 <table>
450 <tr><td>None</td></tr>
451 </table>
452 <a NAME="RedefinedInListComp.__init__" ID="RedefinedInListComp.__init__"></a>
453 <h4>RedefinedInListComp (Constructor)</h4>
454 <b>RedefinedInListComp</b>(<i>filename, loc, name, orig_loc</i>)
455 <p>
456 Constructor
457 </p><dl>
458 <dt><i>filename</i></dt>
459 <dd>
460 name of the file (string)
461 </dd><dt><i>loc</i></dt>
462 <dd>
463 location of the issue
464 </dd><dt><i>name</i></dt>
465 <dd>
466 name of the redefined object (string)
467 </dd><dt><i>orig_loc</i></dt>
468 <dd>
469 location of the original definition
371 </dd> 470 </dd>
372 </dl> 471 </dl>
373 <div align="right"><a href="#top">Up</a></div> 472 <div align="right"><a href="#top">Up</a></div>
374 <hr /><hr /> 473 <hr /><hr />
375 <a NAME="RedefinedWhileUnused" ID="RedefinedWhileUnused"></a> 474 <a NAME="RedefinedWhileUnused" ID="RedefinedWhileUnused"></a>
398 <table> 497 <table>
399 <tr><td>None</td></tr> 498 <tr><td>None</td></tr>
400 </table> 499 </table>
401 <a NAME="RedefinedWhileUnused.__init__" ID="RedefinedWhileUnused.__init__"></a> 500 <a NAME="RedefinedWhileUnused.__init__" ID="RedefinedWhileUnused.__init__"></a>
402 <h4>RedefinedWhileUnused (Constructor)</h4> 501 <h4>RedefinedWhileUnused (Constructor)</h4>
403 <b>RedefinedWhileUnused</b>(<i>filename, lineno, name, orig_lineno</i>) 502 <b>RedefinedWhileUnused</b>(<i>filename, loc, name, orig_loc</i>)
404 <p> 503 <p>
405 Constructor 504 Constructor
406 </p><dl> 505 </p><dl>
407 <dt><i>filename</i></dt> 506 <dt><i>filename</i></dt>
408 <dd> 507 <dd>
409 name of the file (string) 508 name of the file (string)
410 </dd><dt><i>lineno</i></dt> 509 </dd><dt><i>loc</i></dt>
411 <dd> 510 <dd>
412 line number (integer) 511 location of the issue
413 </dd><dt><i>name</i></dt> 512 </dd><dt><i>name</i></dt>
414 <dd> 513 <dd>
415 name of the redefined object (string) 514 name of the redefined object (string)
416 </dd><dt><i>orig_lineno</i></dt> 515 </dd><dt><i>orig_loc</i></dt>
417 <dd> 516 <dd>
418 line number of the original definition (integer) 517 location of the original definition
419 </dd> 518 </dd>
420 </dl> 519 </dl>
421 <div align="right"><a href="#top">Up</a></div> 520 <div align="right"><a href="#top">Up</a></div>
422 <hr /><hr /> 521 <hr /><hr />
423 <a NAME="UndefinedExport" ID="UndefinedExport"></a> 522 <a NAME="UndefinedExport" ID="UndefinedExport"></a>
446 <table> 545 <table>
447 <tr><td>None</td></tr> 546 <tr><td>None</td></tr>
448 </table> 547 </table>
449 <a NAME="UndefinedExport.__init__" ID="UndefinedExport.__init__"></a> 548 <a NAME="UndefinedExport.__init__" ID="UndefinedExport.__init__"></a>
450 <h4>UndefinedExport (Constructor)</h4> 549 <h4>UndefinedExport (Constructor)</h4>
451 <b>UndefinedExport</b>(<i>filename, lineno, name</i>) 550 <b>UndefinedExport</b>(<i>filename, loc, name</i>)
452 <p> 551 <p>
453 Constructor 552 Constructor
454 </p><dl> 553 </p><dl>
455 <dt><i>filename</i></dt> 554 <dt><i>filename</i></dt>
456 <dd> 555 <dd>
457 name of the file (string) 556 name of the file (string)
458 </dd><dt><i>lineno</i></dt> 557 </dd><dt><i>loc</i></dt>
459 <dd> 558 <dd>
460 line number (integer) 559 location of the issue
461 </dd><dt><i>name</i></dt> 560 </dd><dt><i>name</i></dt>
462 <dd> 561 <dd>
463 undefined exported name (string) 562 undefined exported name (string)
464 </dd> 563 </dd>
465 </dl> 564 </dl>
491 <table> 590 <table>
492 <tr><td>None</td></tr> 591 <tr><td>None</td></tr>
493 </table> 592 </table>
494 <a NAME="UndefinedLocal.__init__" ID="UndefinedLocal.__init__"></a> 593 <a NAME="UndefinedLocal.__init__" ID="UndefinedLocal.__init__"></a>
495 <h4>UndefinedLocal (Constructor)</h4> 594 <h4>UndefinedLocal (Constructor)</h4>
496 <b>UndefinedLocal</b>(<i>filename, lineno, name, orig_lineno</i>) 595 <b>UndefinedLocal</b>(<i>filename, loc, name, orig_loc</i>)
497 <p> 596 <p>
498 Constructor 597 Constructor
499 </p><dl> 598 </p><dl>
500 <dt><i>filename</i></dt> 599 <dt><i>filename</i></dt>
501 <dd> 600 <dd>
502 name of the file (string) 601 name of the file (string)
503 </dd><dt><i>lineno</i></dt> 602 </dd><dt><i>loc</i></dt>
504 <dd> 603 <dd>
505 line number (integer) 604 location of the issue
506 </dd><dt><i>name</i></dt> 605 </dd><dt><i>name</i></dt>
507 <dd> 606 <dd>
508 name of the prematurely referenced variable (string) 607 name of the prematurely referenced variable (string)
509 </dd><dt><i>orig_lineno</i></dt> 608 </dd><dt><i>orig_loc</i></dt>
510 <dd> 609 <dd>
511 line number of the variable definition (integer) 610 location of the variable definition
512 </dd> 611 </dd>
513 </dl> 612 </dl>
514 <div align="right"><a href="#top">Up</a></div> 613 <div align="right"><a href="#top">Up</a></div>
515 <hr /><hr /> 614 <hr /><hr />
516 <a NAME="UndefinedName" ID="UndefinedName"></a> 615 <a NAME="UndefinedName" ID="UndefinedName"></a>
539 <table> 638 <table>
540 <tr><td>None</td></tr> 639 <tr><td>None</td></tr>
541 </table> 640 </table>
542 <a NAME="UndefinedName.__init__" ID="UndefinedName.__init__"></a> 641 <a NAME="UndefinedName.__init__" ID="UndefinedName.__init__"></a>
543 <h4>UndefinedName (Constructor)</h4> 642 <h4>UndefinedName (Constructor)</h4>
544 <b>UndefinedName</b>(<i>filename, lineno, name</i>) 643 <b>UndefinedName</b>(<i>filename, loc, name</i>)
545 <p> 644 <p>
546 Constructor 645 Constructor
547 </p><dl> 646 </p><dl>
548 <dt><i>filename</i></dt> 647 <dt><i>filename</i></dt>
549 <dd> 648 <dd>
550 name of the file (string) 649 name of the file (string)
551 </dd><dt><i>lineno</i></dt> 650 </dd><dt><i>loc</i></dt>
552 <dd> 651 <dd>
553 line number (integer) 652 location of the issue
554 </dd><dt><i>name</i></dt> 653 </dd><dt><i>name</i></dt>
555 <dd> 654 <dd>
556 undefined name (string) 655 undefined name (string)
557 </dd> 656 </dd>
558 </dl> 657 </dl>
584 <table> 683 <table>
585 <tr><td>None</td></tr> 684 <tr><td>None</td></tr>
586 </table> 685 </table>
587 <a NAME="UnusedImport.__init__" ID="UnusedImport.__init__"></a> 686 <a NAME="UnusedImport.__init__" ID="UnusedImport.__init__"></a>
588 <h4>UnusedImport (Constructor)</h4> 687 <h4>UnusedImport (Constructor)</h4>
589 <b>UnusedImport</b>(<i>filename, lineno, name</i>) 688 <b>UnusedImport</b>(<i>filename, loc, name</i>)
590 <p> 689 <p>
591 Constructor 690 Constructor
592 </p><dl> 691 </p><dl>
593 <dt><i>filename</i></dt> 692 <dt><i>filename</i></dt>
594 <dd> 693 <dd>
595 name of the file (string) 694 name of the file (string)
596 </dd><dt><i>lineno</i></dt> 695 </dd><dt><i>loc</i></dt>
597 <dd> 696 <dd>
598 line number (integer) 697 location of the issue
599 </dd><dt><i>name</i></dt> 698 </dd><dt><i>name</i></dt>
600 <dd> 699 <dd>
601 name of the unused import (string) 700 name of the unused import (string)
602 </dd> 701 </dd>
603 </dl> 702 </dl>
632 <table> 731 <table>
633 <tr><td>None</td></tr> 732 <tr><td>None</td></tr>
634 </table> 733 </table>
635 <a NAME="UnusedVariable.__init__" ID="UnusedVariable.__init__"></a> 734 <a NAME="UnusedVariable.__init__" ID="UnusedVariable.__init__"></a>
636 <h4>UnusedVariable (Constructor)</h4> 735 <h4>UnusedVariable (Constructor)</h4>
637 <b>UnusedVariable</b>(<i>filename, lineno, name</i>) 736 <b>UnusedVariable</b>(<i>filename, loc, names</i>)
638 <p> 737 <p>
639 Constructor 738 Constructor
640 </p><dl> 739 </p><dl>
641 <dt><i>filename</i></dt> 740 <dt><i>filename</i></dt>
642 <dd> 741 <dd>
643 name of the file (string) 742 name of the file (string)
644 </dd><dt><i>lineno</i></dt> 743 </dd><dt><i>loc</i></dt>
645 <dd> 744 <dd>
646 line number (integer) 745 location of the issue
647 </dd><dt><i>name</i></dt> 746 </dd><dt><i>names</i></dt>
648 <dd> 747 <dd>
649 name of the unused variable (string) 748 names of unused variable (string)
650 </dd> 749 </dd>
651 </dl> 750 </dl>
652 <div align="right"><a href="#top">Up</a></div> 751 <div align="right"><a href="#top">Up</a></div>
653 <hr /> 752 <hr />
654 </body></html> 753 </body></html>

eric ide

mercurial