ionelmc/python-aspectlib

View on GitHub

Showing 49 of 55 total issues

Function __call__ has a Cognitive Complexity of 97 (exceeds 5 allowed). Consider refactoring.
Open

    def __call__(self, cutpoint_function):
        if isasyncfunction is not None and isasyncfunction(cutpoint_function):
            assert isasyncgenfunction(cutpoint_function) or iscoroutinefunction(cutpoint_function)

            async def advising_asyncgenerator_wrapper_py35(*args, **kwargs):
Severity: Minor
Found in src/aspectlib/__init__.py - About 1 day 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 weave_class has a Cognitive Complexity of 75 (exceeds 5 allowed). Consider refactoring.
Open

def weave_class(
    klass, aspect, methods=NORMAL_METHODS, subclasses=True, lazy=False, owner=None, name=None, aliases=True, bases=True, bag=BrokenBag
):
    """
    Low-level weaver for classes.
Severity: Minor
Found in src/aspectlib/__init__.py - About 1 day 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

File test.py has 626 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import logging
from collections import defaultdict
from collections import namedtuple
from difflib import unified_diff
from functools import partial
Severity: Major
Found in src/aspectlib/test.py - About 1 day to fix

    File __init__.py has 606 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import builtins
    import re
    import sys
    import warnings
    from collections import deque
    Severity: Major
    Found in src/aspectlib/__init__.py - About 1 day to fix

      Function log has a Cognitive Complexity of 66 (exceeds 5 allowed). Consider refactoring.
      Open

      def log(func=None,
              stacktrace=10,
              stacktrace_align=60,
              attributes=(),
              module=True,
      Severity: Minor
      Found in src/aspectlib/debug.py - About 1 day 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 weave has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
      Open

      def weave(target, aspects, **options):
          """
          Send a message to a recipient
      
          Args:
      Severity: Minor
      Found in src/aspectlib/__init__.py - About 1 day 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 _handle has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
      Open

          def _handle(self, binding, name, args, kwargs, wrapped, bind=None):
              pk = self._make_key(binding, name, args, kwargs)
              if pk in self._expected:
                  result = self._actual[pk] = self._expected[pk]
                  if isinstance(result, _Binds):
      Severity: Minor
      Found in src/aspectlib/test.py - About 4 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 patch_module has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
      Open

      def patch_module(module, name, replacement, original=UNSPECIFIED, aliases=True, location=None, **_bogus_options):
          """
          Low-level attribute patcher.
      
          :param module module: Object to patch.
      Severity: Minor
      Found in src/aspectlib/__init__.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 retry has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

      def retry(func=None, retries=5, backoff=None, exceptions=(IOError, OSError, EOFError), cleanup=None, sleep=time.sleep):
          """
          Decorator that retries the call ``retries`` times if ``func`` raises ``exceptions``. Can use a ``backoff`` function
          to sleep till next retry.
      
      
      Severity: Minor
      Found in src/aspectlib/contrib.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 __call__ has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

          def __call__(self, *args, **kwargs):
              record = not self.__recurse_lock or self.__recurse_lock.acquire(False)
              try:
                  if self.__results:
                      try:
      Severity: Minor
      Found in src/aspectlib/test.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 _format_calls has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

      def _format_calls(calls):
          for (binding, name, args, kwargs), result in calls.items():
              sig = '%s(%s%s%s)' % (name, args, ', ' if kwargs and args else '', kwargs)
      
              if isinstance(result, _Binds):
      Severity: Minor
      Found in src/aspectlib/test.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 log has 14 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def log(func=None,
      Severity: Major
      Found in src/aspectlib/debug.py - About 1 hr to fix

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

            def has(self, message, *args, **kwargs):
                level = kwargs.pop('level', None)
                assert not kwargs, "Unexpected arguments: %s" % kwargs
                for call_final_message, call_message, call_args, call_level in self._calls:
                    if level is None or level == call_level:
        Severity: Minor
        Found in src/aspectlib/test.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 weave_instance has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

        def weave_instance(instance, aspect, methods=NORMAL_METHODS, lazy=False, bag=BrokenBag, **options):
            """
            Low-level weaver for instances.
        
            .. warning:: You should not use this directly.
        Severity: Minor
        Found in src/aspectlib/__init__.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 __record has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            def __record(self, args, kwargs, *response):
                if self.__callback is not None:
                    self.__callback(self.__binding, qualname(self), args, kwargs, *response)
                if self.calls is not None:
                    if self.__extended:
        Severity: Minor
        Found in src/aspectlib/test.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 weave_class has 10 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def weave_class(
        Severity: Major
        Found in src/aspectlib/__init__.py - About 1 hr to fix

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

              def __exit__(self, *exception):
                  super(Replay, self).__exit__()
                  if self._strict or self._dump:
                      diff = self.diff
                      if diff:
          Severity: Minor
          Found in src/aspectlib/test.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 _find_super_classes has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

          def _find_super_classes(klass):
              if hasattr(klass, '__mro__'):
                  for k in klass.__mro__:
                      yield k
              else:
          Severity: Minor
          Found in src/aspectlib/__init__.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 __init__ has 8 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(self, wrapped, iscalled=True, calls=None, callback=None, extended=False, results=False, recurse_lock=None, binding=None):
          Severity: Major
          Found in src/aspectlib/test.py - About 1 hr to fix

            Function exec_in_env has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            def exec_in_env():
                env_path = join(base_path, ".tox", "bootstrap")
                if sys.platform == "win32":
                    bin_path = join(env_path, "Scripts")
                else:
            Severity: Minor
            Found in ci/bootstrap.py - About 55 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

            Severity
            Category
            Status
            Source
            Language