hackedteam/vector-edk

View on GitHub
AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py

Summary

Maintainability
F
4 mos
Test Coverage

File pycodegen.py has 1265 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import imp
import os
import marshal
import struct
import sys
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 3 days to fix

    CodeGenerator has 102 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class CodeGenerator:
        """Defines basic code generator for Python bytecode
    
        This class is an abstract base class.  Concrete subclasses must
        define an __init__() that defines self.graph and then calls the
    Severity: Major
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 1 day to fix

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

          def visitTryExcept(self, node):
              body = self.newBlock()
              handlers = self.newBlock()
              end = self.newBlock()
              if node.else_:
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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 visitFrom has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def visitFrom(self, node):
              self.set_lineno(node)
              level = node.level
              if level == 0 and not self.graph.checkFlag(CO_FUTURE_ABSIMPORT):
                  level = -1
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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 visitContinue has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def visitContinue(self, node):
              if not self.setups:
                  raise SyntaxError, "'continue' outside loop (%s, %d)" % \
                        (node.filename, node.lineno)
              kind, block = self.setups.top()
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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 _nameOp has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def _nameOp(self, prefix, name):
              name = self.mangle(name)
              scope = self.scope.check_name(name)
              if scope == SC_LOCAL:
                  if not self.optimized:
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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 visitSlice has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def visitSlice(self, node, aug_flag=None):
              # aug_flag is used by visitAugSlice
              self.visit(node.expr)
              slice = 0
              if node.lower:
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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 visitAugSlice has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def visitAugSlice(self, node, mode):
              if mode == "load":
                  self.visitSlice(node, 1)
              elif mode == "store":
                  slice = 0
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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 visitWith has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def visitWith(self, node):
              body = self.newBlock()
              final = self.newBlock()
              self.__with_count += 1
              valuevar = "_[%d]" % self.__with_count
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 1 hr to fix

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

            def visitListComp(self, node):
                self.set_lineno(node)
                # setup list
                self.emit('BUILD_LIST', 0)
        
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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

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

            def visitGenExprInner(self, node):
                self.set_lineno(node)
                # setup list
        
                stack = []
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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

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

            def visitDictComp(self, node):
                self.set_lineno(node)
                # setup list
                self.emit('BUILD_MAP', 0)
        
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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

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

            def visitSetComp(self, node):
                self.set_lineno(node)
                # setup list
                self.emit('BUILD_SET', 0)
        
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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

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

            def visitPrint(self, node, newline=0):
                self.set_lineno(node)
                if node.dest:
                    self.visit(node.dest)
                for child in node.nodes:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.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

        Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(self, func, scopes, isLambda, class_name, mod):
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 35 mins to fix

          Function compile has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def compile(source, filename, mode, flags=None, dont_inherit=None):
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 35 mins to fix

            Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def __init__(self, func, scopes, isLambda, class_name, mod):
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 35 mins to fix

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

                  def __init__(self):
                      if self.__initialized is None:
                          self.initClass()
                          self.__class__.__initialized = 1
                      self.checkClass()
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 35 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 _visitFuncOrLambda has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def _visitFuncOrLambda(self, node, isLambda=0):
                      if not isLambda and node.decorators:
                          for decorator in node.decorators.nodes:
                              self.visit(decorator)
                          ndecorators = len(node.decorators.nodes)
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 35 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 visitImport has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  def visitImport(self, node):
                      self.set_lineno(node)
                      level = 0 if self.graph.checkFlag(CO_FUTURE_ABSIMPORT) else -1
                      for name, alias in node.names:
                          if VERSION > 1:
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 35 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 unpackSequence has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def unpackSequence(self, tup):
                      if VERSION > 1:
                          self.emit('UNPACK_SEQUENCE', len(tup))
                      else:
                          self.emit('UNPACK_TUPLE', len(tup))
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 25 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 visitCallFunc has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def visitCallFunc(self, node):
                      pos = 0
                      kw = 0
                      self.set_lineno(node)
                      self.visit(node.node)
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 25 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 __init__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def __init__(self, func, scopes, isLambda, class_name, mod):
                      self.class_name = class_name
                      self.module = mod
                      if isLambda:
                          klass = FunctionCodeGenerator
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 25 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 visitSubscript has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def visitSubscript(self, node, aug_flag=None):
                      self.visit(node.expr)
                      for sub in node.subs:
                          self.visit(sub)
                      if len(node.subs) > 1:
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 25 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 compile has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

              def compile(source, filename, mode, flags=None, dont_inherit=None):
                  """Replacement for builtin compile() function"""
                  if flags is not None or dont_inherit is not None:
                      raise RuntimeError, "not implemented yet"
              
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/pycodegen.py - About 25 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

              vector-uefi/fd/efi/StdLib/lib/python.27/compiler/pycodegen.py on lines 0..1555

              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 10986.

              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