Sun, 20 Mar 2022 17:26:35 +0100
Third Party packages
- upgraded mccabe to version 0.7.0 with modifications for eric
docs/changelog | file | annotate | diff | comparison | revisions | |
eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py | file | annotate | diff | comparison | revisions |
--- a/docs/changelog Sat Mar 19 16:42:29 2022 +0100 +++ b/docs/changelog Sun Mar 20 17:26:35 2022 +0100 @@ -7,6 +7,8 @@ -- added capability to upgrade eric from within eric - pip Interface -- added a vulnerability check for installed packages based on "Safety DB" +- Third Party packages + -- upgraded mccabe to version 0.7.0 Version 22.3: - bug fixes
--- a/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py Sat Mar 19 16:42:29 2022 +0100 +++ b/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Complexity/mccabe.py Sun Mar 20 17:26:35 2022 +0100 @@ -4,10 +4,20 @@ MIT License. """ +# +# Specialized variant for integration into the eric IDE. +# +# Changes: +# - use 'import ...' instead of 'from ... import ...' +# - removed 'McCabeChecker' because we have our own checker class +# +# Copyright (c) 2015 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + import collections import ast -__version__ = '0.6.1_eric7' +__version__ = '0.7.0_eric7' class ASTVisitor(object):