hackedteam/vector-edk

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

Summary

Maintainability
F
3 days
Test Coverage

File xmlrpclib.py has 961 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#
# XML-RPC CLIENT LIBRARY
# $Id$
#
# an XML-RPC client interface for Python.
Severity: Major
Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.py - About 2 days to fix

    Unmarshaller has 21 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Unmarshaller:
        """Unmarshal an XML-RPC response, based on incoming XML event
        messages (start, data, end).  Call close() to get the resulting
        data structure.
    
    Severity: Minor
    Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.py - About 2 hrs to fix

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

      def dumps(params, methodname=None, methodresponse=None, encoding=None,
                allow_none=0):
          """data [,options] -> marshalled data
      
          Convert an argument tuple or a Fault instance to an XML-RPC
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 request has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def request(self, host, handler, request_body, verbose=0):
              #retry request once if cached connection has gone cold
              for i in (0, 1):
                  try:
                      return self.single_request(host, handler, request_body, verbose)
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 getparser has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      def getparser(use_datetime=0):
          """getparser() -> parser, unmarshaller
      
          Create an instance of the fastest available parser, and attach it
          to an unmarshalling object.  Return both objects.
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 parse_response has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def parse_response(self, response):
              # read response data from httpresponse, and parse it
      
              # Check for new http response object, else it is a file object
              if hasattr(response,'getheader'):
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 dump_struct has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def dump_struct(self, value, write, escape=escape):
              i = id(value)
              if i in self.memo:
                  raise TypeError, "cannot marshal recursive dictionaries"
              self.memo[i] = None
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 __dump has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def __dump(self, value, write):
              try:
                  f = self.dispatch[type(value)]
              except KeyError:
                  # check if this object can be marshalled as a structure
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 make_comparable has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def make_comparable(self, other):
              if isinstance(other, DateTime):
                  s = self.value
                  o = other.value
              elif datetime and isinstance(other, datetime.datetime):
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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 __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def __init__(self, uri, transport=None, encoding=None, verbose=0,
      Severity: Minor
      Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.py - About 45 mins to fix

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

        def dumps(params, methodname=None, methodresponse=None, encoding=None,
        Severity: Minor
        Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.py - About 35 mins to fix

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

          def _strftime(value):
              if datetime:
                  if isinstance(value, datetime.datetime):
                      return "%04d%02d%02dT%02d:%02d:%02d" % (
                          value.year, value.month, value.day,
          Severity: Minor
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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, uri, transport=None, encoding=None, verbose=0,
                           allow_none=0, use_datetime=0):
                  # establish a "logical" server connection
          
                  # get the url
          Severity: Minor
          Found in vector-uefi/fd/efi/StdLib/lib/python.27/xmlrpclib.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

          There are no issues that match your filters.

          Category
          Status