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

changeset 3208
884465a61753
parent 3207
6cf664694e3c
diff -r 6cf664694e3c -r 884465a61753 Documentation/Source/eric5.Utilities.pyflakes.messages.html
--- a/Documentation/Source/eric5.Utilities.pyflakes.messages.html	Wed Jan 15 19:16:06 2014 +0100
+++ b/Documentation/Source/eric5.Utilities.pyflakes.messages.html	Thu Jan 16 18:28:34 2014 +0100
@@ -30,6 +30,9 @@
 <h3>Classes</h3>
 <table>
 <tr>
+<td><a href="#DoctestSyntaxError">DoctestSyntaxError</a></td>
+<td>Class defining the "Doctest syntax Error" message.</td>
+</tr><tr>
 <td><a href="#DuplicateArgument">DuplicateArgument</a></td>
 <td>Class defining the "Duplicate Argument" message.</td>
 </tr><tr>
@@ -45,8 +48,11 @@
 <td><a href="#Message">Message</a></td>
 <td>Class defining the base for all specific message classes.</td>
 </tr><tr>
-<td><a href="#RedefinedFunction">RedefinedFunction</a></td>
-<td>Class defining the "Redefined Function" message.</td>
+<td><a href="#Redefined">Redefined</a></td>
+<td>Class defining the "Redefined" message.</td>
+</tr><tr>
+<td><a href="#RedefinedInListComp">RedefinedInListComp</a></td>
+<td>Class defining the "Redefined In List Comprehension" message.</td>
 </tr><tr>
 <td><a href="#RedefinedWhileUnused">RedefinedWhileUnused</a></td>
 <td>Class defining the "Redefined While Unused" message.</td>
@@ -72,6 +78,51 @@
 <tr><td>None</td></tr>
 </table>
 <hr /><hr />
+<a NAME="DoctestSyntaxError" ID="DoctestSyntaxError"></a>
+<h2>DoctestSyntaxError</h2>
+<p>
+    Class defining the "Doctest syntax Error" message.
+</p>
+<h3>Derived from</h3>
+Message
+<h3>Class Attributes</h3>
+<table>
+<tr><td>message</td></tr><tr><td>message_id</td></tr>
+</table>
+<h3>Class Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#DoctestSyntaxError.__init__">DoctestSyntaxError</a></td>
+<td>Constructor</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<a NAME="DoctestSyntaxError.__init__" ID="DoctestSyntaxError.__init__"></a>
+<h4>DoctestSyntaxError (Constructor)</h4>
+<b>DoctestSyntaxError</b>(<i>filename, loc, position=None</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>filename</i></dt>
+<dd>
+name of the file (string)
+</dd><dt><i>loc</i></dt>
+<dd>
+location of the issue
+</dd><dt><i>position</i></dt>
+<dd>
+position of the syntax error
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr /><hr />
 <a NAME="DuplicateArgument" ID="DuplicateArgument"></a>
 <h2>DuplicateArgument</h2>
 <p>
@@ -100,16 +151,16 @@
 </table>
 <a NAME="DuplicateArgument.__init__" ID="DuplicateArgument.__init__"></a>
 <h4>DuplicateArgument (Constructor)</h4>
-<b>DuplicateArgument</b>(<i>filename, lineno, name</i>)
+<b>DuplicateArgument</b>(<i>filename, loc, name</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 name of the duplicate argument (string)
@@ -145,22 +196,22 @@
 </table>
 <a NAME="ImportShadowedByLoopVar.__init__" ID="ImportShadowedByLoopVar.__init__"></a>
 <h4>ImportShadowedByLoopVar (Constructor)</h4>
-<b>ImportShadowedByLoopVar</b>(<i>filename, lineno, name, orig_lineno</i>)
+<b>ImportShadowedByLoopVar</b>(<i>filename, loc, name, orig_loc</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 name of the shadowed import (string)
-</dd><dt><i>orig_lineno</i></dt>
+</dd><dt><i>orig_loc</i></dt>
 <dd>
-line number of the import (integer)
+location of the import
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>
@@ -193,16 +244,16 @@
 </table>
 <a NAME="ImportStarUsed.__init__" ID="ImportStarUsed.__init__"></a>
 <h4>ImportStarUsed (Constructor)</h4>
-<b>ImportStarUsed</b>(<i>filename, lineno, modname</i>)
+<b>ImportStarUsed</b>(<i>filename, loc, modname</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>modname</i></dt>
 <dd>
 name of the module imported using star import (string)
@@ -238,16 +289,16 @@
 </table>
 <a NAME="LateFutureImport.__init__" ID="LateFutureImport.__init__"></a>
 <h4>LateFutureImport (Constructor)</h4>
-<b>LateFutureImport</b>(<i>filename, lineno, names</i>)
+<b>LateFutureImport</b>(<i>filename, loc, names</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>names</i></dt>
 <dd>
 names of the imported futures (string)
@@ -289,16 +340,16 @@
 </table>
 <a NAME="Message.__init__" ID="Message.__init__"></a>
 <h4>Message (Constructor)</h4>
-<b>Message</b>(<i>filename, lineno</i>)
+<b>Message</b>(<i>filename, loc</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd>
 </dl><a NAME="Message.__str__" ID="Message.__str__"></a>
 <h4>Message.__str__</h4>
@@ -324,10 +375,10 @@
 </dl>
 <div align="right"><a href="#top">Up</a></div>
 <hr /><hr />
-<a NAME="RedefinedFunction" ID="RedefinedFunction"></a>
-<h2>RedefinedFunction</h2>
+<a NAME="Redefined" ID="Redefined"></a>
+<h2>Redefined</h2>
 <p>
-    Class defining the "Redefined Function" message.
+    Class defining the "Redefined" message.
 </p>
 <h3>Derived from</h3>
 Message
@@ -342,7 +393,7 @@
 <h3>Methods</h3>
 <table>
 <tr>
-<td><a href="#RedefinedFunction.__init__">RedefinedFunction</a></td>
+<td><a href="#Redefined.__init__">Redefined</a></td>
 <td>Constructor</td>
 </tr>
 </table>
@@ -350,24 +401,72 @@
 <table>
 <tr><td>None</td></tr>
 </table>
-<a NAME="RedefinedFunction.__init__" ID="RedefinedFunction.__init__"></a>
-<h4>RedefinedFunction (Constructor)</h4>
-<b>RedefinedFunction</b>(<i>filename, lineno, name, orig_lineno</i>)
+<a NAME="Redefined.__init__" ID="Redefined.__init__"></a>
+<h4>Redefined (Constructor)</h4>
+<b>Redefined</b>(<i>filename, loc, name, orig_loc</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 name of the redefined function (string)
-</dd><dt><i>orig_lineno</i></dt>
+</dd><dt><i>orig_loc</i></dt>
 <dd>
-line number of the original definition (integer)
+location of the original definition
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr /><hr />
+<a NAME="RedefinedInListComp" ID="RedefinedInListComp"></a>
+<h2>RedefinedInListComp</h2>
+<p>
+    Class defining the "Redefined In List Comprehension" message.
+</p>
+<h3>Derived from</h3>
+Message
+<h3>Class Attributes</h3>
+<table>
+<tr><td>message</td></tr><tr><td>message_id</td></tr>
+</table>
+<h3>Class Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#RedefinedInListComp.__init__">RedefinedInListComp</a></td>
+<td>Constructor</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<a NAME="RedefinedInListComp.__init__" ID="RedefinedInListComp.__init__"></a>
+<h4>RedefinedInListComp (Constructor)</h4>
+<b>RedefinedInListComp</b>(<i>filename, loc, name, orig_loc</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>filename</i></dt>
+<dd>
+name of the file (string)
+</dd><dt><i>loc</i></dt>
+<dd>
+location of the issue
+</dd><dt><i>name</i></dt>
+<dd>
+name of the redefined object (string)
+</dd><dt><i>orig_loc</i></dt>
+<dd>
+location of the original definition
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>
@@ -400,22 +499,22 @@
 </table>
 <a NAME="RedefinedWhileUnused.__init__" ID="RedefinedWhileUnused.__init__"></a>
 <h4>RedefinedWhileUnused (Constructor)</h4>
-<b>RedefinedWhileUnused</b>(<i>filename, lineno, name, orig_lineno</i>)
+<b>RedefinedWhileUnused</b>(<i>filename, loc, name, orig_loc</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 name of the redefined object (string)
-</dd><dt><i>orig_lineno</i></dt>
+</dd><dt><i>orig_loc</i></dt>
 <dd>
-line number of the original definition (integer)
+location of the original definition
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>
@@ -448,16 +547,16 @@
 </table>
 <a NAME="UndefinedExport.__init__" ID="UndefinedExport.__init__"></a>
 <h4>UndefinedExport (Constructor)</h4>
-<b>UndefinedExport</b>(<i>filename, lineno, name</i>)
+<b>UndefinedExport</b>(<i>filename, loc, name</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 undefined exported name (string)
@@ -493,22 +592,22 @@
 </table>
 <a NAME="UndefinedLocal.__init__" ID="UndefinedLocal.__init__"></a>
 <h4>UndefinedLocal (Constructor)</h4>
-<b>UndefinedLocal</b>(<i>filename, lineno, name, orig_lineno</i>)
+<b>UndefinedLocal</b>(<i>filename, loc, name, orig_loc</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 name of the prematurely referenced variable (string)
-</dd><dt><i>orig_lineno</i></dt>
+</dd><dt><i>orig_loc</i></dt>
 <dd>
-line number of the variable definition (integer)
+location of the variable definition
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>
@@ -541,16 +640,16 @@
 </table>
 <a NAME="UndefinedName.__init__" ID="UndefinedName.__init__"></a>
 <h4>UndefinedName (Constructor)</h4>
-<b>UndefinedName</b>(<i>filename, lineno, name</i>)
+<b>UndefinedName</b>(<i>filename, loc, name</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 undefined name (string)
@@ -586,16 +685,16 @@
 </table>
 <a NAME="UnusedImport.__init__" ID="UnusedImport.__init__"></a>
 <h4>UnusedImport (Constructor)</h4>
-<b>UnusedImport</b>(<i>filename, lineno, name</i>)
+<b>UnusedImport</b>(<i>filename, loc, name</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
+location of the issue
 </dd><dt><i>name</i></dt>
 <dd>
 name of the unused import (string)
@@ -634,19 +733,19 @@
 </table>
 <a NAME="UnusedVariable.__init__" ID="UnusedVariable.__init__"></a>
 <h4>UnusedVariable (Constructor)</h4>
-<b>UnusedVariable</b>(<i>filename, lineno, name</i>)
+<b>UnusedVariable</b>(<i>filename, loc, names</i>)
 <p>
         Constructor
 </p><dl>
 <dt><i>filename</i></dt>
 <dd>
 name of the file (string)
-</dd><dt><i>lineno</i></dt>
+</dd><dt><i>loc</i></dt>
 <dd>
-line number (integer)
-</dd><dt><i>name</i></dt>
+location of the issue
+</dd><dt><i>names</i></dt>
 <dd>
-name of the unused variable (string)
+names of unused variable (string)
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>

eric ide

mercurial