Sat, 10 Apr 2021 16:13:22 +0200
Updated source docu.
--- a/docs/changelog Sat Apr 10 16:13:07 2021 +0200 +++ b/docs/changelog Sat Apr 10 16:13:22 2021 +0200 @@ -6,6 +6,7 @@ -- added a checker to find code that could be simplified -- added capability to the results page to filter the messages based on message code + -- improved the statistics handling -- updated pycodestyle to version 2.7.0 - MicroPython -- added option to select the baud rate for flashing ESP32 and ESP8266 boards
--- a/eric6/APIs/Python3/eric6.api Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/APIs/Python3/eric6.api Sat Apr 10 16:13:22 2021 +0200 @@ -3663,7 +3663,7 @@ eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.check_physical?4(line) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.generate_tokens?4() eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.init_checker_state?4(name, argument_names) -eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.maybe_check_physical?4(token) +eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.maybe_check_physical?4(token, prev_physical) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.readline?4() eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.report_invalid_syntax?4() eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.Checker.run_check?4(check, argument_names) @@ -3680,6 +3680,7 @@ eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.FileReport.print_filename?7 eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.HUNK_REGEX?7 eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.INDENT_REGEX?7 +eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.INDENT_SIZE?7 eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.KEYWORDS?7 eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.KEYWORD_REGEX?7 eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.LAMBDA_REGEX?7 @@ -3736,14 +3737,14 @@ eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.comparison_to_singleton?4(logical_line, noqa) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.comparison_type?4(logical_line, noqa) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.compound_statements?4(logical_line) -eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.continued_indentation?4(logical_line, tokens, indent_level, hang_closing, indent_char, noqa, verbose) +eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.continued_indentation?4(logical_line, tokens, indent_level, hang_closing, indent_char, indent_size, indent_size_str, noqa, verbose) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.expand_indent?4(line) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.explicit_line_join?4(logical_line, tokens) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.extraneous_whitespace?4(logical_line) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.filename_match?4(filename, patterns, default=True) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.get_parser?4(prog='pycodestyle', version=__version__) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.imports_on_separate_lines?4(logical_line) -eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.indentation?4(logical_line, previous_logical, indent_char, indent_level, previous_indent_level) +eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.indentation?4(logical_line, previous_logical, indent_char, indent_level, previous_indent_level, indent_size, indent_size_str) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.is_string_literal?4(line) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.lru_cache?4(maxsize=128) eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.maximum_doc_length?4(logical_line, max_doc_length, noqa, tokens) @@ -6435,7 +6436,6 @@ eric6.Plugins.WizardPlugins.SetupWizard.SetupWizardDialog.SetupWizardDialog.on_variantComboBox_currentIndexChanged?4(index) eric6.Plugins.WizardPlugins.SetupWizard.SetupWizardDialog.SetupWizardDialog?1(parent=None) eric6.Preferences.ConfigurationDialog.ConfigurationDialog.DefaultMode?7 -eric6.Preferences.ConfigurationDialog.ConfigurationDialog.HelpBrowserMode?7 eric6.Preferences.ConfigurationDialog.ConfigurationDialog.HexEditorMode?7 eric6.Preferences.ConfigurationDialog.ConfigurationDialog.TrayStarterMode?7 eric6.Preferences.ConfigurationDialog.ConfigurationDialog.WebBrowserMode?7 @@ -6450,7 +6450,6 @@ eric6.Preferences.ConfigurationDialog.ConfigurationPageItem.getPageName?4() eric6.Preferences.ConfigurationDialog.ConfigurationPageItem?1(parent, text, pageName, iconFile) eric6.Preferences.ConfigurationDialog.ConfigurationWidget.DefaultMode?7 -eric6.Preferences.ConfigurationDialog.ConfigurationWidget.HelpBrowserMode?7 eric6.Preferences.ConfigurationDialog.ConfigurationWidget.HexEditorMode?7 eric6.Preferences.ConfigurationDialog.ConfigurationWidget.TrayStarterMode?7 eric6.Preferences.ConfigurationDialog.ConfigurationWidget.WebBrowserMode?7
--- a/eric6/Documentation/Help/source.qhp Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Help/source.qhp Sat Apr 10 16:13:22 2021 +0200 @@ -2599,6 +2599,7 @@ <keyword name="CodeStyleCheckerDialog.__createErrorItem" id="CodeStyleCheckerDialog.__createErrorItem" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__createErrorItem" /> <keyword name="CodeStyleCheckerDialog.__createFileErrorItem" id="CodeStyleCheckerDialog.__createFileErrorItem" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__createFileErrorItem" /> <keyword name="CodeStyleCheckerDialog.__createResultItem" id="CodeStyleCheckerDialog.__createResultItem" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__createResultItem" /> + <keyword name="CodeStyleCheckerDialog.__defaultStatistics" id="CodeStyleCheckerDialog.__defaultStatistics" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__defaultStatistics" /> <keyword name="CodeStyleCheckerDialog.__finish" id="CodeStyleCheckerDialog.__finish" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__finish" /> <keyword name="CodeStyleCheckerDialog.__getBuiltinsIgnoreList" id="CodeStyleCheckerDialog.__getBuiltinsIgnoreList" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__getBuiltinsIgnoreList" /> <keyword name="CodeStyleCheckerDialog.__getCategories" id="CodeStyleCheckerDialog.__getCategories" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html#CodeStyleCheckerDialog.__getCategories" /> @@ -13377,8 +13378,10 @@ <keyword name="SimplifyNodeVisitor.__check117" id="SimplifyNodeVisitor.__check117" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check117" /> <keyword name="SimplifyNodeVisitor.__check118" id="SimplifyNodeVisitor.__check118" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check118" /> <keyword name="SimplifyNodeVisitor.__check119" id="SimplifyNodeVisitor.__check119" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check119" /> - <keyword name="SimplifyNodeVisitor.__check120" id="SimplifyNodeVisitor.__check120" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check120" /> - <keyword name="SimplifyNodeVisitor.__check121" id="SimplifyNodeVisitor.__check121" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check121" /> + <keyword name="SimplifyNodeVisitor.__check120_121" id="SimplifyNodeVisitor.__check120_121" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check120_121" /> + <keyword name="SimplifyNodeVisitor.__check122" id="SimplifyNodeVisitor.__check122" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check122" /> + <keyword name="SimplifyNodeVisitor.__check181" id="SimplifyNodeVisitor.__check181" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check181" /> + <keyword name="SimplifyNodeVisitor.__check182" id="SimplifyNodeVisitor.__check182" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check182" /> <keyword name="SimplifyNodeVisitor.__check201" id="SimplifyNodeVisitor.__check201" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check201" /> <keyword name="SimplifyNodeVisitor.__check202" id="SimplifyNodeVisitor.__check202" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check202" /> <keyword name="SimplifyNodeVisitor.__check203" id="SimplifyNodeVisitor.__check203" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check203" /> @@ -13395,6 +13398,8 @@ <keyword name="SimplifyNodeVisitor.__check223" id="SimplifyNodeVisitor.__check223" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check223" /> <keyword name="SimplifyNodeVisitor.__check224" id="SimplifyNodeVisitor.__check224" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check224" /> <keyword name="SimplifyNodeVisitor.__check301" id="SimplifyNodeVisitor.__check301" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check301" /> + <keyword name="SimplifyNodeVisitor.__check401" id="SimplifyNodeVisitor.__check401" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check401" /> + <keyword name="SimplifyNodeVisitor.__check402" id="SimplifyNodeVisitor.__check402" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__check402" /> <keyword name="SimplifyNodeVisitor.__getDuplicatedIsinstanceCall" id="SimplifyNodeVisitor.__getDuplicatedIsinstanceCall" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__getDuplicatedIsinstanceCall" /> <keyword name="SimplifyNodeVisitor.__getIfBodyPairs" id="SimplifyNodeVisitor.__getIfBodyPairs" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__getIfBodyPairs" /> <keyword name="SimplifyNodeVisitor.__isConstantIncrease" id="SimplifyNodeVisitor.__isConstantIncrease" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html#SimplifyNodeVisitor.__isConstantIncrease" />
--- a/eric6/Documentation/Source/eric6.DataViews.CodeMetrics.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DataViews.CodeMetrics.html Sat Apr 10 16:13:22 2021 +0200 @@ -76,7 +76,7 @@ Class used to parse the source code of a Python file. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -160,7 +160,7 @@ Class used to calculate and store the source code statistics. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -318,7 +318,7 @@ Class to store the token related infos. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.AsyncFile.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.AsyncFile.html Sat Apr 10 16:13:22 2021 +0200 @@ -58,7 +58,7 @@ Class wrapping a socket object with a file interface. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.DebugBase.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.DebugBase.html Sat Apr 10 16:13:22 2021 +0200 @@ -64,7 +64,7 @@ Provides methods for the 'owning' client to call to step etc. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.DebugClientBase.html Sat Apr 10 16:13:22 2021 +0200 @@ -83,7 +83,7 @@ DebugClient classes. Do not instantiate it directly. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.DebugVariables.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.DebugVariables.html Sat Apr 10 16:13:22 2021 +0200 @@ -190,7 +190,7 @@ Base class of the resolver class tree. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.FlexCompleter.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.FlexCompleter.html Sat Apr 10 16:13:22 2021 +0200 @@ -109,7 +109,7 @@ Class implementing the command line completer object. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.ModuleLoader.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.ModuleLoader.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing an import hook patching modules to support debugging. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DebugClients.Python.ThreadExtension.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DebugClients.Python.ThreadExtension.html Sat Apr 10 16:13:22 2021 +0200 @@ -206,7 +206,7 @@ threads and their name and state. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Debugger.VariablesViewer.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Debugger.VariablesViewer.html Sat Apr 10 16:13:22 2021 +0200 @@ -65,7 +65,7 @@ Class implementing the data structure for all variable items. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DocumentationTools.APIGenerator.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DocumentationTools.APIGenerator.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing the builtin documentation generator. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DocumentationTools.IndexGenerator.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DocumentationTools.IndexGenerator.html Sat Apr 10 16:13:22 2021 +0200 @@ -55,7 +55,7 @@ generator. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DocumentationTools.ModuleDocumentor.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DocumentationTools.ModuleDocumentor.html Sat Apr 10 16:13:22 2021 +0200 @@ -62,7 +62,7 @@ Class implementing the builtin documentation generator. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.DocumentationTools.QtHelpGenerator.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.DocumentationTools.QtHelpGenerator.html Sat Apr 10 16:13:22 2021 +0200 @@ -55,7 +55,7 @@ generator. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.E5Gui.E5Led.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Gui.E5Led.html Sat Apr 10 16:13:22 2021 +0200 @@ -405,9 +405,9 @@ </p> <dl> -<dt><i>evt</i></dt> +<dt><i>evt</i> (QPaintEvent)</dt> <dd> -paint event object (QPaintEvent) +paint event object </dd> </dl> <dl>
--- a/eric6/Documentation/Source/eric6.E5Gui.E5ToolBarDialog.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Gui.E5ToolBarDialog.html Sat Apr 10 16:13:22 2021 +0200 @@ -342,7 +342,7 @@ Class storing data belonging to a toolbar entry of the toolbar dialog. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.E5Network.E5Ftp.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Network.E5Ftp.html Sat Apr 10 16:13:22 2021 +0200 @@ -322,7 +322,7 @@ Class defining the supported FTP proxy types. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.E5Network.E5NetworkProxyFactory.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Network.E5NetworkProxyFactory.html Sat Apr 10 16:13:22 2021 +0200 @@ -150,7 +150,7 @@ Class implementing a matcher for host names. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.E5Network.E5TldExtractor.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Network.E5TldExtractor.html Sat Apr 10 16:13:22 2021 +0200 @@ -615,7 +615,7 @@ Class implementing the host parts helper. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.E5Network.E5UrlInfo.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Network.E5UrlInfo.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a replacement for QUrlInfo. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.E5Utilities.E5Cache.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.E5Utilities.E5Cache.html Sat Apr 10 16:13:22 2021 +0200 @@ -58,7 +58,7 @@ cache. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Graphics.UMLItem.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Graphics.UMLItem.html Sat Apr 10 16:13:22 2021 +0200 @@ -424,7 +424,7 @@ Class implementing the UMLModel base class. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.HexEdit.HexEditChunks.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.HexEdit.HexEditChunks.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing a container for the data chunks. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -115,7 +115,7 @@ are changed and which are not. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Network.IRC.IrcNetworkManager.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Network.IRC.IrcNetworkManager.html Sat Apr 10 16:13:22 2021 +0200 @@ -69,7 +69,7 @@ Class implementing the IRC channel object. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -244,7 +244,7 @@ Class implementing the IRC identity object. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -700,7 +700,7 @@ Class implementing the IRC network object. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -1477,7 +1477,7 @@ Class implementing the IRC identity object. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -65,7 +65,7 @@ Class implementing a checker for function type annotations. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleCheckerDialog.html Sat Apr 10 16:13:22 2021 +0200 @@ -101,6 +101,10 @@ <td>Private method to create an entry in the result list.</td> </tr> <tr> +<td><a href="#CodeStyleCheckerDialog.__defaultStatistics">__defaultStatistics</a></td> +<td>Private method to return the default statistics entry.</td> +</tr> +<tr> <td><a href="#CodeStyleCheckerDialog.__finish">__finish</a></td> <td>Private slot called when the code style check finished or the user pressed the cancel button.</td> </tr> @@ -444,6 +448,25 @@ QTreeWidgetItem </dd> </dl> +<a NAME="CodeStyleCheckerDialog.__defaultStatistics" ID="CodeStyleCheckerDialog.__defaultStatistics"></a> +<h4>CodeStyleCheckerDialog.__defaultStatistics</h4> +<b>__defaultStatistics</b>(<i></i>) + +<p> + Private method to return the default statistics entry. +</p> +<dl> +<dt>Return:</dt> +<dd> +dictionary with default statistics entry +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +dict +</dd> +</dl> <a NAME="CodeStyleCheckerDialog.__finish" ID="CodeStyleCheckerDialog.__finish"></a> <h4>CodeStyleCheckerDialog.__finish</h4> <b>__finish</b>(<i></i>)
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleFixer.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleFixer.html Sat Apr 10 16:13:22 2021 +0200 @@ -65,7 +65,7 @@ Class implementing a fixer for certain code style issues. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -2316,7 +2316,7 @@ Each instance operates on a single logical line. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -2411,7 +2411,7 @@ Class used to shorten lines to a given maximum of characters. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -2736,7 +2736,7 @@ Released to the public domain, by Tim Peters, 03 October 2000. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleStatisticsDialog.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.CodeStyleStatisticsDialog.html Sat Apr 10 16:13:22 2021 +0200 @@ -94,35 +94,36 @@ </p> <dl> -<dt><i>statistics</i></dt> +<dt><i>statistics</i> (dict)</dt> <dd> dictionary with the statistical data </dd> -<dt><i>parent</i></dt> +<dt><i>parent</i> (QWidget)</dt> <dd> -reference to the parent widget (QWidget) +reference to the parent widget </dd> </dl> <a NAME="CodeStyleStatisticsDialog.__createItem" ID="CodeStyleStatisticsDialog.__createItem"></a> <h4>CodeStyleStatisticsDialog.__createItem</h4> -<b>__createItem</b>(<i>count, code, message</i>) +<b>__createItem</b>(<i>counts, code, message</i>) <p> Private method to create an entry in the result list. </p> <dl> -<dt><i>count</i></dt> -<dd> -occurrences of the issue (integer) -</dd> -<dt><i>code</i></dt> +<dt><i>counts</i> (dict)</dt> <dd> -of a code style issue message (string) +dictionary containing the total and ignored occurrences + of the issue </dd> -<dt><i>message</i></dt> +<dt><i>code</i> (str)</dt> <dd> -code style issue message to be shown (string) +of a code style issue message +</dd> +<dt><i>message</i> (str)</dt> +<dd> +code style issue message to be shown </dd> </dl> <div align="right"><a href="#top">Up</a></div>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Complexity.ComplexityChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Complexity.ComplexityChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing a checker for code complexity. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.DocStyle.DocStyleChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.DocStyle.DocStyleChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing a checker for documentation string conventions. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -1105,7 +1105,7 @@ Class implementing the source context. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Miscellaneous.MiscellaneousChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -666,7 +666,7 @@ Class implementing a checker for miscellaneous checks. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Naming.NamingStyleChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Naming.NamingStyleChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a checker for naming conventions. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.PathLib.PathlibChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.PathLib.PathlibChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -172,7 +172,7 @@ the pathlib module. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.djangoXssVulnerability.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.djangoXssVulnerability.html Sat Apr 10 16:13:22 2021 +0200 @@ -77,7 +77,7 @@ Class to perform a deep analysis of an assign. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a checker for security issues. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityContext.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityContext.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a context class for security related checks. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityNodeVisitor.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.SecurityNodeVisitor.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing an AST node visitor for security checks. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a checker for to help simplifying Python code. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.Simplify.SimplifyNodeVisitor.html Sat Apr 10 16:13:22 2021 +0200 @@ -146,12 +146,20 @@ <td>Private method to check for classes that should be "dataclasses".</td> </tr> <tr> -<td><a href="#SimplifyNodeVisitor.__check120">__check120</a></td> +<td><a href="#SimplifyNodeVisitor.__check120_121">__check120_121</a></td> <td>Private method to check for classes that inherit from object.</td> </tr> <tr> -<td><a href="#SimplifyNodeVisitor.__check121">__check121</a></td> -<td>Private method to check for assignments that could be converted into an augmented assignment</td> +<td><a href="#SimplifyNodeVisitor.__check122">__check122</a></td> +<td>Private method to check for all if-blocks which only check if a key is in a dictionary.</td> +</tr> +<tr> +<td><a href="#SimplifyNodeVisitor.__check181">__check181</a></td> +<td>Private method to check for assignments that could be converted into an augmented assignment.</td> +</tr> +<tr> +<td><a href="#SimplifyNodeVisitor.__check182">__check182</a></td> +<td>Private method to check for calls of type 'super(Foo, self)' that could be shortened to 'super()'.</td> </tr> <tr> <td><a href="#SimplifyNodeVisitor.__check201">__check201</a></td> @@ -218,6 +226,14 @@ <td>Private method to check for Yoda conditions.</td> </tr> <tr> +<td><a href="#SimplifyNodeVisitor.__check401">__check401</a></td> +<td>Private method to check for bare boolean function arguments.</td> +</tr> +<tr> +<td><a href="#SimplifyNodeVisitor.__check402">__check402</a></td> +<td>Private method to check for bare numeric function arguments.</td> +</tr> +<tr> <td><a href="#SimplifyNodeVisitor.__getDuplicatedIsinstanceCall">__getDuplicatedIsinstanceCall</a></td> <td>Private method to get a list of isinstance arguments which could be combined.</td> </tr> @@ -585,9 +601,9 @@ reference to the AST node to be checked </dd> </dl> -<a NAME="SimplifyNodeVisitor.__check120" ID="SimplifyNodeVisitor.__check120"></a> -<h4>SimplifyNodeVisitor.__check120</h4> -<b>__check120</b>(<i>node</i>) +<a NAME="SimplifyNodeVisitor.__check120_121" ID="SimplifyNodeVisitor.__check120_121"></a> +<h4>SimplifyNodeVisitor.__check120_121</h4> +<b>__check120_121</b>(<i>node</i>) <p> Private method to check for classes that inherit from object. @@ -599,13 +615,28 @@ reference to the AST node to be checked </dd> </dl> -<a NAME="SimplifyNodeVisitor.__check121" ID="SimplifyNodeVisitor.__check121"></a> -<h4>SimplifyNodeVisitor.__check121</h4> -<b>__check121</b>(<i>node</i>) +<a NAME="SimplifyNodeVisitor.__check122" ID="SimplifyNodeVisitor.__check122"></a> +<h4>SimplifyNodeVisitor.__check122</h4> +<b>__check122</b>(<i>node</i>) + +<p> + Private method to check for all if-blocks which only check if a key + is in a dictionary. +</p> +<dl> + +<dt><i>node</i> (ast.If)</dt> +<dd> +reference to the AST node to be checked +</dd> +</dl> +<a NAME="SimplifyNodeVisitor.__check181" ID="SimplifyNodeVisitor.__check181"></a> +<h4>SimplifyNodeVisitor.__check181</h4> +<b>__check181</b>(<i>node</i>) <p> Private method to check for assignments that could be converted into - an augmented assignment + an augmented assignment. </p> <dl> @@ -614,6 +645,21 @@ reference to the AST node to be checked </dd> </dl> +<a NAME="SimplifyNodeVisitor.__check182" ID="SimplifyNodeVisitor.__check182"></a> +<h4>SimplifyNodeVisitor.__check182</h4> +<b>__check182</b>(<i>node</i>) + +<p> + Private method to check for calls of type 'super(Foo, self)' that could + be shortened to 'super()'. +</p> +<dl> + +<dt><i>node</i> (ast.Call)</dt> +<dd> +reference to the AST node to be checked +</dd> +</dl> <a NAME="SimplifyNodeVisitor.__check201" ID="SimplifyNodeVisitor.__check201"></a> <h4>SimplifyNodeVisitor.__check201</h4> <b>__check201</b>(<i>node</i>) @@ -841,6 +887,34 @@ reference to the AST node to be checked </dd> </dl> +<a NAME="SimplifyNodeVisitor.__check401" ID="SimplifyNodeVisitor.__check401"></a> +<h4>SimplifyNodeVisitor.__check401</h4> +<b>__check401</b>(<i>node</i>) + +<p> + Private method to check for bare boolean function arguments. +</p> +<dl> + +<dt><i>node</i> (ast.Call)</dt> +<dd> +reference to the AST node to be checked +</dd> +</dl> +<a NAME="SimplifyNodeVisitor.__check402" ID="SimplifyNodeVisitor.__check402"></a> +<h4>SimplifyNodeVisitor.__check402</h4> +<b>__check402</b>(<i>node</i>) + +<p> + Private method to check for bare numeric function arguments. +</p> +<dl> + +<dt><i>node</i> (ast.Call)</dt> +<dd> +reference to the AST node to be checked +</dd> +</dl> <a NAME="SimplifyNodeVisitor.__getDuplicatedIsinstanceCall" ID="SimplifyNodeVisitor.__getDuplicatedIsinstanceCall"></a> <h4>SimplifyNodeVisitor.__getDuplicatedIsinstanceCall</h4> <b>__getDuplicatedIsinstanceCall</b>(<i>node</i>)
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html Sat Apr 10 16:13:22 2021 +0200 @@ -25,7 +25,7 @@ <h3>Global Attributes</h3> <table> -<tr><td>ARITHMETIC_OP</td></tr><tr><td>ASSIGNMENT_EXPRESSION_OP</td></tr><tr><td>BENCHMARK_KEYS</td></tr><tr><td>BLANK_LINES_CONFIG</td></tr><tr><td>COMPARE_NEGATIVE_REGEX</td></tr><tr><td>COMPARE_SINGLETON_REGEX</td></tr><tr><td>COMPARE_TYPE_REGEX</td></tr><tr><td>DEFAULT_EXCLUDE</td></tr><tr><td>DEFAULT_IGNORE</td></tr><tr><td>DOCSTRING_REGEX</td></tr><tr><td>DUNDER_REGEX</td></tr><tr><td>ERRORCODE_REGEX</td></tr><tr><td>EXTRANEOUS_WHITESPACE_REGEX</td></tr><tr><td>FUNCTION_RETURN_ANNOTATION_OP</td></tr><tr><td>HUNK_REGEX</td></tr><tr><td>INDENT_REGEX</td></tr><tr><td>KEYWORDS</td></tr><tr><td>KEYWORD_REGEX</td></tr><tr><td>LAMBDA_REGEX</td></tr><tr><td>MAX_DOC_LENGTH</td></tr><tr><td>MAX_LINE_LENGTH</td></tr><tr><td>NEWLINE</td></tr><tr><td>OPERATOR_REGEX</td></tr><tr><td>PROJECT_CONFIG</td></tr><tr><td>PyCF_ONLY_AST</td></tr><tr><td>RAISE_COMMA_REGEX</td></tr><tr><td>REPORT_FORMAT</td></tr><tr><td>RERAISE_COMMA_REGEX</td></tr><tr><td>SINGLETONS</td></tr><tr><td>SKIP_COMMENTS</td></tr><tr><td>SKIP_TOKENS</td></tr><tr><td>STARTSWITH_DEF_REGEX</td></tr><tr><td>STARTSWITH_INDENT_STATEMENT_REGEX</td></tr><tr><td>STARTSWITH_TOP_LEVEL_REGEX</td></tr><tr><td>TESTSUITE_PATH</td></tr><tr><td>UNARY_OPERATORS</td></tr><tr><td>WHITESPACE</td></tr><tr><td>WHITESPACE_AFTER_COMMA_REGEX</td></tr><tr><td>WS_NEEDED_OPERATORS</td></tr><tr><td>WS_OPTIONAL_OPERATORS</td></tr><tr><td>_SYMBOLIC_OPS</td></tr><tr><td>__version__</td></tr><tr><td>_checks</td></tr><tr><td>noqa</td></tr> +<tr><td>ARITHMETIC_OP</td></tr><tr><td>ASSIGNMENT_EXPRESSION_OP</td></tr><tr><td>BENCHMARK_KEYS</td></tr><tr><td>BLANK_LINES_CONFIG</td></tr><tr><td>COMPARE_NEGATIVE_REGEX</td></tr><tr><td>COMPARE_SINGLETON_REGEX</td></tr><tr><td>COMPARE_TYPE_REGEX</td></tr><tr><td>DEFAULT_EXCLUDE</td></tr><tr><td>DEFAULT_IGNORE</td></tr><tr><td>DOCSTRING_REGEX</td></tr><tr><td>DUNDER_REGEX</td></tr><tr><td>ERRORCODE_REGEX</td></tr><tr><td>EXTRANEOUS_WHITESPACE_REGEX</td></tr><tr><td>FUNCTION_RETURN_ANNOTATION_OP</td></tr><tr><td>HUNK_REGEX</td></tr><tr><td>INDENT_REGEX</td></tr><tr><td>INDENT_SIZE</td></tr><tr><td>KEYWORDS</td></tr><tr><td>KEYWORD_REGEX</td></tr><tr><td>LAMBDA_REGEX</td></tr><tr><td>MAX_DOC_LENGTH</td></tr><tr><td>MAX_LINE_LENGTH</td></tr><tr><td>NEWLINE</td></tr><tr><td>OPERATOR_REGEX</td></tr><tr><td>PROJECT_CONFIG</td></tr><tr><td>PyCF_ONLY_AST</td></tr><tr><td>RAISE_COMMA_REGEX</td></tr><tr><td>REPORT_FORMAT</td></tr><tr><td>RERAISE_COMMA_REGEX</td></tr><tr><td>SINGLETONS</td></tr><tr><td>SKIP_COMMENTS</td></tr><tr><td>SKIP_TOKENS</td></tr><tr><td>STARTSWITH_DEF_REGEX</td></tr><tr><td>STARTSWITH_INDENT_STATEMENT_REGEX</td></tr><tr><td>STARTSWITH_TOP_LEVEL_REGEX</td></tr><tr><td>TESTSUITE_PATH</td></tr><tr><td>UNARY_OPERATORS</td></tr><tr><td>WHITESPACE</td></tr><tr><td>WHITESPACE_AFTER_COMMA_REGEX</td></tr><tr><td>WS_NEEDED_OPERATORS</td></tr><tr><td>WS_OPTIONAL_OPERATORS</td></tr><tr><td>_SYMBOLIC_OPS</td></tr><tr><td>__version__</td></tr><tr><td>_checks</td></tr><tr><td>noqa</td></tr> </table> <h3>Classes</h3> @@ -158,7 +158,7 @@ </tr> <tr> <td><a href="#indentation">indentation</a></td> -<td>Use 4 spaces per indentation level.</td> +<td>Use indent_size (PEP8 says 4) spaces per indentation level.</td> </tr> <tr> <td><a href="#is_string_literal">is_string_literal</a></td> @@ -598,7 +598,7 @@ </p> <a NAME="Checker.maybe_check_physical" ID="Checker.maybe_check_physical"></a> <h4>Checker.maybe_check_physical</h4> -<b>maybe_check_physical</b>(<i>token</i>) +<b>maybe_check_physical</b>(<i>token, prev_physical</i>) <p> If appropriate for token, check current physical line(s). @@ -1278,7 +1278,7 @@ <hr /> <a NAME="continued_indentation" ID="continued_indentation"></a> <h2>continued_indentation</h2> -<b>continued_indentation</b>(<i>logical_line, tokens, indent_level, hang_closing, indent_char, noqa, verbose</i>) +<b>continued_indentation</b>(<i>logical_line, tokens, indent_level, hang_closing, indent_char, indent_size, indent_size_str, noqa, verbose</i>) <p> Continuation lines indentation. @@ -1439,10 +1439,10 @@ <hr /> <a NAME="indentation" ID="indentation"></a> <h2>indentation</h2> -<b>indentation</b>(<i>logical_line, previous_logical, indent_char, indent_level, previous_indent_level</i>) +<b>indentation</b>(<i>logical_line, previous_logical, indent_char, indent_level, previous_indent_level, indent_size, indent_size_str</i>) <p> -Use 4 spaces per indentation level. +Use indent_size (PEP8 says 4) spaces per indentation level. </p> <p> For really old code that you don't want to mess up, you can continue @@ -1612,9 +1612,9 @@ Okay: # this is a comment\nimport os Okay: '''this is a module docstring'''\nimport os Okay: r'''this is a module docstring'''\nimport os - Okay: + Okay: try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y - Okay: + Okay: try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y E402: a=1\nimport os E402: 'One string'\n"Two string"\nimport os
--- a/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheck.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheck.html Sat Apr 10 16:13:22 2021 +0200 @@ -84,22 +84,22 @@ </p> <dl> -<dt><i>filename</i></dt> +<dt><i>filename</i> (str)</dt> <dd> -source filename (string) +source filename </dd> -<dt><i>codestring</i></dt> +<dt><i>codestring</i> (str)</dt> <dd> -string containing the code to compile (string) +string containing the code to compile </dd> -<dt><i>checkFlakes</i></dt> +<dt><i>checkFlakes</i> (bool)</dt> <dd> -flag indicating to do a pyflakes check (boolean) +flag indicating to do a pyflakes check </dd> -<dt><i>ignoreStarImportWarnings</i></dt> +<dt><i>ignoreStarImportWarnings</i> (bool)</dt> <dd> flag indicating to - ignore 'star import' warnings (boolean) + ignore 'star import' warnings </dd> </dl> <dl> @@ -111,6 +111,12 @@ errors), the message, a list with arguments for the message) </dd> </dl> +<dl> +<dt>Return Type:</dt> +<dd> +dict +</dd> +</dl> <div align="right"><a href="#top">Up</a></div> <hr /> <hr />
--- a/eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsGit.GitDiffParser.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsGit.GitDiffParser.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a class to store and parse diff output. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsPySvn.SvnDialogMixin.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsPySvn.SvnDialogMixin.html Sat Apr 10 16:13:22 2021 +0200 @@ -55,7 +55,7 @@ the pysvn client. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Preferences.ConfigurationDialog.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Preferences.ConfigurationDialog.html Sat Apr 10 16:13:22 2021 +0200 @@ -82,7 +82,7 @@ <h3>Class Attributes</h3> <table> -<tr><td>DefaultMode</td></tr><tr><td>HelpBrowserMode</td></tr><tr><td>HexEditorMode</td></tr><tr><td>TrayStarterMode</td></tr><tr><td>WebBrowserMode</td></tr> +<tr><td>DefaultMode</td></tr><tr><td>HexEditorMode</td></tr><tr><td>TrayStarterMode</td></tr><tr><td>WebBrowserMode</td></tr> </table> <h3>Class Methods</h3> @@ -161,8 +161,7 @@ <dt><i>displayMode</i></dt> <dd> mode of the configuration dialog - (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, - WebBrowserMode) + (DefaultMode, TrayStarterMode, HexEditorMode, WebBrowserMode) </dd> <dt><i>expandedEntries</i></dt> <dd> @@ -365,7 +364,7 @@ <h3>Class Attributes</h3> <table> -<tr><td>DefaultMode</td></tr><tr><td>HelpBrowserMode</td></tr><tr><td>HexEditorMode</td></tr><tr><td>TrayStarterMode</td></tr><tr><td>WebBrowserMode</td></tr> +<tr><td>DefaultMode</td></tr><tr><td>HexEditorMode</td></tr><tr><td>TrayStarterMode</td></tr><tr><td>WebBrowserMode</td></tr> </table> <h3>Class Methods</h3> @@ -500,8 +499,7 @@ <dt><i>displayMode</i></dt> <dd> mode of the configuration dialog - (DefaultMode, HelpBrowserMode, TrayStarterMode, HexEditorMode, - WebBrowserMode) + (DefaultMode, TrayStarterMode, HexEditorMode, WebBrowserMode) </dd> <dt><i>expandedEntries</i></dt> <dd>
--- a/eric6/Documentation/Source/eric6.Preferences.ConfigurationPages.NetworkPage.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Preferences.ConfigurationPages.NetworkPage.html Sat Apr 10 16:13:22 2021 +0200 @@ -155,7 +155,6 @@ <dd> mode of the configuration dialog (ConfigurationWidget.DefaultMode, - ConfigurationWidget.HelpBrowserMode, ConfigurationWidget.WebBrowserMode) </dd> </dl>
--- a/eric6/Documentation/Source/eric6.Preferences.ConfigurationPages.SecurityPage.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Preferences.ConfigurationPages.SecurityPage.html Sat Apr 10 16:13:22 2021 +0200 @@ -155,7 +155,6 @@ <dd> mode of the configuration dialog (ConfigurationWidget.DefaultMode, - ConfigurationWidget.HelpBrowserMode, ConfigurationWidget.WebBrowserMode) </dd> </dl>
--- a/eric6/Documentation/Source/eric6.Preferences.ConfigurationPages.WebBrowserAppearancePage.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Preferences.ConfigurationPages.WebBrowserAppearancePage.html Sat Apr 10 16:13:22 2021 +0200 @@ -118,7 +118,6 @@ <dd> mode of the configuration dialog (ConfigurationWidget.DefaultMode, - ConfigurationWidget.HelpBrowserMode, ConfigurationWidget.TrayStarterMode) </dd> </dl>
--- a/eric6/Documentation/Source/eric6.Preferences.__init__.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Preferences.__init__.html Sat Apr 10 16:13:22 2021 +0200 @@ -507,7 +507,7 @@ A class to hold all configuration items for the application. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Project.Project.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Project.Project.html Sat Apr 10 16:13:22 2021 +0200 @@ -4021,16 +4021,21 @@ </p> <dl> -<dt><i>path</i></dt> -<dd> -path to be checked (string) +<dt><i>path</i> (str)</dt> +<dd> +path to be checked </dd> </dl> <dl> <dt>Return:</dt> <dd> flag indicating that the path starts with the project path - (boolean) +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool </dd> </dl> <a NAME="Project.stopFileSystemMonitoring" ID="Project.stopFileSystemMonitoring"></a>
--- a/eric6/Documentation/Source/eric6.Project.ProjectBrowserModel.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Project.ProjectBrowserModel.html Sat Apr 10 16:13:22 2021 +0200 @@ -208,7 +208,7 @@ It is meant to be used as a mixin class. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html Sat Apr 10 16:13:22 2021 +0200 @@ -65,7 +65,7 @@ Class implementing a docstring generator base class. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -387,7 +387,7 @@ language specific subclasses. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.QScintilla.Exporters.ExporterHTML.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.QScintilla.Exporters.ExporterHTML.html Sat Apr 10 16:13:22 2021 +0200 @@ -170,7 +170,7 @@ Class implementing an HTML generator for exporting source code. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.QScintilla.Exporters.ExporterPDF.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.QScintilla.Exporters.ExporterPDF.html Sat Apr 10 16:13:22 2021 +0200 @@ -158,7 +158,7 @@ All writes to the file are passed through a PDFObjectTracker object. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -271,7 +271,7 @@ so that line formatting and pagination can be done properly. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -450,7 +450,7 @@ Simple class to store the values of a PDF style. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.QScintilla.Lexers.Lexer.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.QScintilla.Lexers.Lexer.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class to implement the lexer mixin class. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.QScintilla.MarkupProviders.MarkupBase.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.QScintilla.MarkupProviders.MarkupBase.html Sat Apr 10 16:13:22 2021 +0200 @@ -58,7 +58,7 @@ all methods. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Tasks.TaskFilter.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Tasks.TaskFilter.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a filter for tasks. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Toolbox.SingleApplication.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Toolbox.SingleApplication.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing the single application client base class. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Tools.TRPreviewer.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Tools.TRPreviewer.html Sat Apr 10 16:13:22 2021 +0200 @@ -300,7 +300,7 @@ Class to store the properties of a translation. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Tools.UIPreviewer.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Tools.UIPreviewer.html Sat Apr 10 16:13:22 2021 +0200 @@ -249,9 +249,9 @@ </p> <dl> -<dt><i>fn</i></dt> +<dt><i>fn</i> (str)</dt> <dd> -name of the ui file to be laoded (string) +name of the ui file to be laoded </dd> </dl> <a NAME="UIPreviewer.__openFile" ID="UIPreviewer.__openFile"></a>
--- a/eric6/Documentation/Source/eric6.UI.BrowserModel.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.UI.BrowserModel.html Sat Apr 10 16:13:22 2021 +0200 @@ -1624,7 +1624,7 @@ Class implementing the data structure for browser items. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.UI.PixmapCache.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.UI.PixmapCache.html Sat Apr 10 16:13:22 2021 +0200 @@ -77,7 +77,7 @@ Class implementing a pixmap cache for icons. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.UI.SplashScreen.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.UI.SplashScreen.html Sat Apr 10 16:13:22 2021 +0200 @@ -61,7 +61,7 @@ but simply does nothing. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.BackgroundClient.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.BackgroundClient.html Sat Apr 10 16:13:22 2021 +0200 @@ -54,7 +54,7 @@ Class implementing the main part of the background client. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html Sat Apr 10 16:13:22 2021 +0200 @@ -463,7 +463,7 @@ Class implementing the base class of all visibility mixins. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -861,7 +861,7 @@ Class implementing the base of all class browser objects. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.ClassBrowsers.jsclbr.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.ClassBrowsers.jsclbr.html Sat Apr 10 16:13:22 2021 +0200 @@ -251,7 +251,7 @@ Class implementing a visitor going through the parsed tree. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.ClassBrowsers.pyclbr.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.ClassBrowsers.pyclbr.html Sat Apr 10 16:13:22 2021 +0200 @@ -303,7 +303,7 @@ Class to represent an imported module. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -383,7 +383,7 @@ Class to represent the list of imported modules. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -505,7 +505,7 @@ Class to represent the list of public identifiers. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.MimeTypes.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.MimeTypes.html Sat Apr 10 16:13:22 2021 +0200 @@ -59,15 +59,21 @@ </p> <dl> -<dt><i>filename</i></dt> +<dt><i>filename</i> (str)</dt> <dd> -name of the file to be checked (string) +name of the file to be checked </dd> </dl> <dl> <dt>Return:</dt> <dd> -flag indicating an editable file (boolean) +flag indicating an editable file +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool </dd> </dl> <div align="right"><a href="#top">Up</a></div> @@ -82,15 +88,21 @@ </p> <dl> -<dt><i>filename</i></dt> +<dt><i>filename</i> (str)</dt> <dd> -name of the file to be checked (string) +name of the file to be checked </dd> </dl> <dl> <dt>Return:</dt> <dd> -mime type of the file (string) +mime type of the file +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +str </dd> </dl> <div align="right"><a href="#top">Up</a></div>
--- a/eric6/Documentation/Source/eric6.Utilities.ModuleParser.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.ModuleParser.html Sat Apr 10 16:13:22 2021 +0200 @@ -521,7 +521,7 @@ Class to represent a Python module. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -672,9 +672,9 @@ </p> <dl> -<dt><i>src</i></dt> +<dt><i>src</i> (str)</dt> <dd> -the source text to be scanned (string) +the source text to be scanned </dd> </dl> <a NAME="Module.addClass" ID="Module.addClass"></a> @@ -1016,7 +1016,7 @@ Class implementing the visibility aspect of all objects. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.PasswordChecker.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.PasswordChecker.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a checker for password strength. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.Utilities.__init__.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.__init__.html Sat Apr 10 16:13:22 2021 +0200 @@ -2302,20 +2302,26 @@ </p> <dl> -<dt><i>path</i></dt> +<dt><i>path</i> (str)</dt> <dd> -path to be checked (string) +path to be checked </dd> -<dt><i>start</i></dt> +<dt><i>start</i> (str)</dt> <dd> -start path (string) +start path </dd> </dl> <dl> <dt>Return:</dt> <dd> flag indicating that the path starts with the given start - path (boolean) + path +</dd> +</dl> +<dl> +<dt>Return Type:</dt> +<dd> +bool </dd> </dl> <div align="right"><a href="#top">Up</a></div>
--- a/eric6/Documentation/Source/eric6.Utilities.crypto.py3AES.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.Utilities.crypto.py3AES.html Sat Apr 10 16:13:22 2021 +0200 @@ -74,7 +74,7 @@ Class implementing the Advanced Encryption Standard algorithm. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -717,7 +717,7 @@ Class implementing the different AES mode of operations. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.AdBlock.AdBlockRule.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.AdBlock.AdBlockRule.html Sat Apr 10 16:13:22 2021 +0200 @@ -65,7 +65,7 @@ Class implementing the AdBlock rule. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.AdBlock.AdBlockSearchTree.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.AdBlock.AdBlockSearchTree.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing the AdBlock search tree. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -243,7 +243,7 @@ Class implementing the AdBlock search tree node. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.Bookmarks.BookmarkNode.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.Bookmarks.BookmarkNode.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing the bookmark node type. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.ClosedTabsManager.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.ClosedTabsManager.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing a structure to store data about a closed tab. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.History.HistoryFilterModel.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.History.HistoryFilterModel.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class storing some history data. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.History.HistoryManager.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.History.HistoryManager.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing a history entry. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.Passwords.LoginForm.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.Passwords.LoginForm.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing a data structure for login forms. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.SafeBrowsing.SafeBrowsingThreatList.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.SafeBrowsing.SafeBrowsingThreatList.html Sat Apr 10 16:13:22 2021 +0200 @@ -57,7 +57,7 @@ Class implementing a container for threat list data. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table> @@ -158,7 +158,7 @@ Class implementing the threat list info. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.SafeBrowsing.SafeBrowsingUrl.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.SafeBrowsing.SafeBrowsingUrl.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing an URL representation suitable for Google Safe Browsing. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.Session.SessionManager.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.Session.SessionManager.html Sat Apr 10 16:13:22 2021 +0200 @@ -687,7 +687,7 @@ Class implementing a data structure to store meta data for a session. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.SpeedDial.Page.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.SpeedDial.Page.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class to hold the data for a speed dial page. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>
--- a/eric6/Documentation/Source/eric6.WebBrowser.Tools.WebHitTestResult.html Sat Apr 10 16:13:07 2021 +0200 +++ b/eric6/Documentation/Source/eric6.WebBrowser.Tools.WebHitTestResult.html Sat Apr 10 16:13:22 2021 +0200 @@ -53,7 +53,7 @@ Class implementing an object for testing certain aspects of a web page. </p> <h3>Derived from</h3> -object +None <h3>Class Attributes</h3> <table>