--- a/Documentation/Source/eric5.Plugins.CheckerPlugins.SyntaxChecker.pyflakes.messages.html Sun Mar 30 22:00:14 2014 +0200 +++ b/Documentation/Source/eric5.Plugins.CheckerPlugins.SyntaxChecker.pyflakes.messages.html Thu Apr 03 23:05:31 2014 +0200 @@ -21,17 +21,17 @@ <body><a NAME="top" ID="top"></a> <h1>eric5.Plugins.CheckerPlugins.SyntaxChecker.pyflakes.messages</h1> <p> -Provide the class Message and its subclasses. +Module implementing the messages for pyflakes. </p> <h3>Global Attributes</h3> <table> -<tr><td>QT_TRANSLATE_NOOP</td></tr> +<tr><td>None</td></tr> </table> <h3>Classes</h3> <table> <tr> <td><a href="#DoctestSyntaxError">DoctestSyntaxError</a></td> -<td>Class defining the "Syntax error in doctest" message.</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> @@ -52,7 +52,7 @@ <td>Class defining the "Redefined" message.</td> </tr><tr> <td><a href="#RedefinedInListComp">RedefinedInListComp</a></td> -<td>Class defining the list comprehension redefinition.</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> @@ -81,13 +81,13 @@ <a NAME="DoctestSyntaxError" ID="DoctestSyntaxError"></a> <h2>DoctestSyntaxError</h2> <p> - Class defining the "Syntax error in doctest" message. + 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</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -115,10 +115,10 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) -</dd><dt><i>position=</i></dt> +location of the issue +</dd><dt><i>position</i></dt> <dd> -of warning if existent (object) +position of the syntax error </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -132,7 +132,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -160,7 +160,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> name of the duplicate argument (string) @@ -177,7 +177,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -205,13 +205,13 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> name of the shadowed import (string) </dd><dt><i>orig_loc</i></dt> <dd> -location of the import (object) +location of the import </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -225,7 +225,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -253,7 +253,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>modname</i></dt> <dd> name of the module imported using star import (string) @@ -270,7 +270,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -298,7 +298,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>names</i></dt> <dd> names of the imported futures (string) @@ -315,7 +315,7 @@ object <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr><tr><td>message_args</td></tr> +<tr><td>message</td></tr><tr><td>message_args</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -349,7 +349,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd> </dl><a NAME="Message.__str__" ID="Message.__str__"></a> <h4>Message.__str__</h4> @@ -369,8 +369,8 @@ </p><dl> <dt>Returns:</dt> <dd> -tuple containing file name, line number and message - (string, integer, string) +tuple containing file name, line number, column, message ID + and message arguments (string, integer, integer, string, list) </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -384,7 +384,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -412,13 +412,13 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> name of the redefined function (string) </dd><dt><i>orig_loc</i></dt> <dd> -location of the original definition (object) +location of the original definition </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -426,13 +426,13 @@ <a NAME="RedefinedInListComp" ID="RedefinedInListComp"></a> <h2>RedefinedInListComp</h2> <p> - Class defining the list comprehension redefinition. + 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</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -460,13 +460,13 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +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 (object) +location of the original definition </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -480,7 +480,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -508,13 +508,13 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +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 (object) +location of the original definition </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -528,7 +528,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -556,7 +556,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> undefined exported name (string) @@ -573,7 +573,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -601,13 +601,13 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> name of the prematurely referenced variable (string) </dd><dt><i>orig_loc</i></dt> <dd> -location of the variable definition (object) +location of the variable definition </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -621,7 +621,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -649,7 +649,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> undefined name (string) @@ -666,7 +666,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -694,7 +694,7 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>name</i></dt> <dd> name of the unused import (string) @@ -714,7 +714,7 @@ Message <h3>Class Attributes</h3> <table> -<tr><td>message</td></tr> +<tr><td>message</td></tr><tr><td>message_id</td></tr> </table> <h3>Class Methods</h3> <table> @@ -742,10 +742,10 @@ name of the file (string) </dd><dt><i>loc</i></dt> <dd> -location of warning (object) +location of the issue </dd><dt><i>names</i></dt> <dd> -names of the unused variable (string) +names of unused variable (string) </dd> </dl> <div align="right"><a href="#top">Up</a></div>