hackedteam/vector-edk

View on GitHub
vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py

Summary

Maintainability
F
1 mo
Test Coverage

File pkgutil.py has 453 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Utilities to support packages."""

# NOTE: This module must remain compatible with Python 2.3, as it is shared
# by setuptools for distribution with Python 2.3 and up.
Severity: Minor
Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 6 hrs to fix

    Function walk_packages has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
    Open

    def walk_packages(path=None, prefix='', onerror=None):
        """Yields (module_loader, name, ispkg) for all modules recursively
        on path, or, if path is None, all accessible modules.
    
        'path' should be either None or a list of paths to look for
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function extend_path has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def extend_path(path, name):
        """Extend a package's path.
    
        Intended use is to place the following code in a package's __init__.py:
    
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function iter_modules has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

        def iter_modules(self, prefix=''):
            if self.path is None or not os.path.isdir(self.path):
                return
    
            yielded = {}
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function simplegeneric has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    def simplegeneric(func):
        """Make a trivial single-dispatch generic function"""
        registry = {}
        def wrapper(*args, **kw):
            ob = args[0]
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function iter_zipimport_modules has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        def iter_zipimport_modules(importer, prefix=''):
            dirlist = zipimport._zip_directory_cache[importer.archive].keys()
            dirlist.sort()
            _prefix = importer.prefix
            plen = len(_prefix)
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function iter_importers has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def iter_importers(fullname=""):
        """Yield PEP 302 importers for the given module name
    
        If fullname contains a '.', the importers will be for the package
        containing fullname, otherwise they will be importers for sys.meta_path,
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_importer has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_importer(path_item):
        """Retrieve a PEP 302 importer for the given path item
    
        The returned importer is cached in sys.path_importer_cache
        if it was newly created by a path hook.
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function iter_modules has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def iter_modules(path=None, prefix=''):
        """Yields (module_loader, name, ispkg) for all submodules on path,
        or, if path is None, all top-level modules on sys.path.
    
        'path' should be either None or a list of paths to look for
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_source has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_source(self, fullname=None):
            fullname = self._fix_name(fullname)
            if self.source is None:
                mod_type = self.etc[2]
                if mod_type==imp.PY_SOURCE:
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Identical blocks of code found in 2 locations. Consider refactoring.
    Open

    Severity: Major
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/pkgutil.py and 1 other location - About 1 mo to fix
    AppPkg/Applications/Python/Python-2.7.2/Lib/pkgutil.py on lines 0..583

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 3012.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    There are no issues that match your filters.

    Category
    Status