hackedteam/vector-edk

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

Summary

Maintainability
F
1 yr
Test Coverage

File decimal.py has 4598 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright (c) 2004 Python Software Foundation.
# All rights reserved.

# Written by Eric Price <eprice at tjhsst.edu>
#    and Facundo Batista <facundo at taniquetil.com.ar>
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 1 wk to fix

    Decimal has 115 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Decimal(object):
        """Floating point class for decimal arithmetic."""
    
        __slots__ = ('_exp','_int','_sign', '_is_special')
        # Generally, the value of the Decimal instance is given by
    Severity: Major
    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 2 days to fix

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

          def _power_exact(self, other, p):
              """Attempt to compute self**other exactly.
      
              Given Decimals self and other and an integer p, attempt to
              compute an exact result for the power self**other, with p
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __pow__ has a Cognitive Complexity of 78 (exceeds 5 allowed). Consider refactoring.
      Open

          def __pow__(self, other, modulo=None, context=None):
              """Return self ** other [ % modulo].
      
              With two arguments, compute self**other.
      
      Severity: Minor
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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

      Context has 75 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Context(object):
          """Contains the context for a Decimal instance.
      
          Contains:
          prec - precision (for use in rounding, division, square roots..)
      Severity: Major
      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 1 day to fix

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

            def compare_total(self, other):
                """Compares self to other using the abstract representations.
        
                This is not like the standard compare, which use their numerical
                value. Note that a total ordering is defined for all possible abstract
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __new__ has a Cognitive Complexity of 57 (exceeds 5 allowed). Consider refactoring.
        Open

            def __new__(cls, value="0", context=None):
                """Create a decimal point instance.
        
                >>> Decimal('3.14')              # string input
                Decimal('3.14')
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _fix has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
        Open

            def _fix(self, context):
                """Round if it is necessary to keep self within prec precision.
        
                Rounds and fixes the exponent.  Does not raise on a sNaN.
        
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __add__ has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
        Open

            def __add__(self, other, context=None):
                """Returns self + other.
        
                -INF + INF (or the reverse) cause InvalidOperation errors.
                """
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 quantize has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
        Open

            def quantize(self, exp, rounding=None, context=None, watchexp=True):
                """Quantize self so its exponent is the same as that of exp.
        
                Similar to self._rescale(exp._exp) but with error checking.
                """
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __truediv__ has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
        Open

            def __truediv__(self, other, context=None):
                """Return self / other."""
                other = _convert_other(other)
                if other is NotImplemented:
                    return NotImplemented
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 sqrt has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
        Open

            def sqrt(self, context=None):
                """Return the square root of self."""
                if context is None:
                    context = getcontext()
        
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __format__ has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
        Open

            def __format__(self, specifier, context=None, _localeconv=None):
                """Format a Decimal instance according to the given specifier.
        
                The specifier should be a standard format specifier, with the
                form described in PEP 3101.  Formatting types 'e', 'E', 'f',
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 exp has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            def exp(self, context=None):
                """Returns e ** self."""
        
                if context is None:
                    context = getcontext()
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _power_modulo has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            def _power_modulo(self, other, modulo, context=None):
                """Three argument version of __pow__"""
        
                # if can't convert other and modulo to Decimal, raise
                # TypeError; there's no point returning NotImplemented (no
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 fma has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

            def fma(self, other, third, context=None):
                """Fused multiply-add.
        
                Returns self*other+third with no rounding of the intermediate
                product self*other.
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _parse_format_specifier has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

        def _parse_format_specifier(format_spec, _localeconv=None):
            """Parse and validate a format specifier.
        
            Turns a standard numeric format specifier into a dict, with the
            following entries:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _cmp has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            def _cmp(self, other):
                """Compare the two non-NaN decimal instances self and other.
        
                Returns -1 if self < other, 0 if self == other and 1
                if self > other.  This routine is for internal use only."""
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __mul__ has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
        Open

            def __mul__(self, other, context=None):
                """Return self * other.
        
                (+-) INF * 0 (or its reverse) raise InvalidOperation.
                """
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __str__ has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            def __str__(self, eng=False, context=None):
                """Return string representation of the number in scientific notation.
        
                Captures all of the information in the underlying representation.
                """
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 remainder_near has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
        Open

            def remainder_near(self, other, context=None):
                """
                Remainder nearest to 0-  abs(remainder-near) <= other/2
                """
                if context is None:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 max has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def max(self, other, context=None):
                """Returns the larger value.
        
                Like max(self, other) except if one is not a number, returns
                NaN (and signals if one is sNaN).  Also rounds.
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 min_mag has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def min_mag(self, other, context=None):
                """Compares the values numerically with their sign ignored."""
                other = _convert_other(other, raiseit=True)
        
                if context is None:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 min has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def min(self, other, context=None):
                """Returns the smaller value.
        
                Like min(self, other) except if one is not a number, returns
                NaN (and signals if one is sNaN).  Also rounds.
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 number_class has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def number_class(self, context=None):
                """Returns an indication of the class of self.
        
                The class is one of the following strings:
                  sNaN
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            def __init__(self, prec=None, rounding=None,
                         traps=None, flags=None,
                         Emin=None, Emax=None,
                         capitals=None, _clamp=0,
                         _ignored_flags=None):
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 max_mag has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            def max_mag(self, other, context=None):
                """Compares the values numerically with their sign ignored."""
                other = _convert_other(other, raiseit=True)
        
                if context is None:
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 log10 has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

            def log10(self, context=None):
                """Returns the base 10 logarithm of self."""
        
                if context is None:
                    context = getcontext()
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _check_nans has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            def _check_nans(self, other=None, context=None):
                """Returns whether the number is not actually one.
        
                if self, other are sNaN, signal
                if self, other are NaN return nan
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __hash__ has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            def __hash__(self):
                """x.__hash__() <==> hash(x)"""
                # Decimal integers must hash the same as the ints
                #
                # The hash of a nonspecial noninteger Decimal must depend only
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __divmod__ has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            def __divmod__(self, other, context=None):
                """
                Return (self // other, self % other)
                """
                other = _convert_other(other)
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __floordiv__ has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            def __floordiv__(self, other, context=None):
                """self // other"""
                other = _convert_other(other)
                if other is NotImplemented:
                    return other
        Severity: Minor
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 9 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(self, prec=None, rounding=None,
        Severity: Major
        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 1 hr to fix

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

              def shift(self, other, context=None):
                  """Returns a shifted copy of self, value-of-other times."""
                  if context is None:
                      context = getcontext()
          
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _dlog has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

          def _dlog(c, e, p):
              """Given integers c, e and p with c > 0, compute an integer
              approximation to 10**p * log(c*10**e), with an absolute error of
              at most 1.  Assumes that c*10**e is not exactly 1."""
          
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _divide has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              def _divide(self, other, context):
                  """Return (self // other, self % other), to context.prec precision.
          
                  Assumes that neither self nor other is a NaN, that self is not
                  infinite and that other is nonzero.
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 ln has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              def ln(self, context=None):
                  """Returns the natural (base e) logarithm of self."""
          
                  if context is None:
                      context = getcontext()
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 next_toward has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              def next_toward(self, other, context=None):
                  """Returns the number closest to self, in the direction towards other.
          
                  The result is the closest representable number to self
                  (excluding self) that is in the direction towards other,
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 rotate has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              def rotate(self, other, context=None):
                  """Returns a rotated copy of self, value-of-other times."""
                  if context is None:
                      context = getcontext()
          
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 to_integral_exact has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              def to_integral_exact(self, rounding=None, context=None):
                  """Rounds to a nearby integer.
          
                  If no rounding mode is specified, take the rounding mode from
                  the context.  This method raises the Rounded and Inexact flags
          Severity: Minor
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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

          Avoid deeply nested control flow statements.
          Open

                                  if digits or digit != 0:
                                      digits.append(digit)
                              else:
          Severity: Major
          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 45 mins to fix

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

                def __mod__(self, other, context=None):
                    """
                    self % other
                    """
                    other = _convert_other(other)
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _format_number has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def _format_number(is_negative, intpart, fracpart, exp, spec):
            Severity: Minor
            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 35 mins to fix

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

              def _dpower(xc, xe, yc, ye, p):
              Severity: Minor
              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 35 mins to fix

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

                    def to_integral_value(self, rounding=None, context=None):
                        """Rounds to the nearest integer, without raising inexact, rounded."""
                        if context is None:
                            context = getcontext()
                        if rounding is None:
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 normalize has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def normalize(self, context=None):
                        """Normalize- strip trailing 0s, change anything equal to 0 to 0e0"""
                
                        if context is None:
                            context = getcontext()
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _insert_thousands_sep has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                def _insert_thousands_sep(digits, spec, min_width=1):
                    """Insert thousands separators into a digit string.
                
                    spec is a dictionary whose keys should include 'thousands_sep' and
                    'grouping'; typically it's the result of parsing the format
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 handle has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def handle(self, context, sign, *args):
                        if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN,
                                                ROUND_HALF_DOWN, ROUND_UP):
                            return _SignedInfinity[sign]
                        if sign == 0:
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _compare_check_nans has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def _compare_check_nans(self, other, context):
                        """Version of _check_nans used for the signaling comparisons
                        compare_signal, __le__, __lt__, __ge__, __gt__.
                
                        Signal InvalidOperation if either self or other is a (quiet
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 getdigits has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def getdigits(self, p):
                        """Given an integer p >= 0, return floor(10**p)*log(10).
                
                        For example, self.getdigits(3) returns 2302.
                        """
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __neg__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def __neg__(self, context=None):
                        """Returns a copy with the sign switched.
                
                        Rounds, if it has reason.
                        """
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _dpower has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                def _dpower(xc, xe, yc, ye, p):
                    """Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and
                    y = yc*10**ye, compute x**y.  Returns a pair of integers (c, e) such that:
                
                      10**(p-1) <= c <= 10**p, and
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __int__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def __int__(self):
                        """Converts self to an int, truncating if necessary."""
                        if self._is_special:
                            if self._isnan():
                                raise ValueError("Cannot convert NaN to integer")
                Severity: Minor
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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

                Avoid too many return statements within this function.
                Open

                        return 0
                Severity: Major
                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          return 0
                  Severity: Major
                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                return hash((-1)**op.sign*op.int*pow(10, op.exp, 2**64-1))
                    Severity: Major
                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                  return _dec_from_triple(sign, '9'*context.prec,
                      Severity: Major
                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                        return (-1)**self._sign
                        Severity: Major
                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                  return hash((self._sign,
                          Severity: Major
                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                        return 1
                            Severity: Major
                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                              return -(-1)**self._sign
                              Severity: Major
                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                            return self
                                Severity: Major
                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                  Avoid too many return statements within this function.
                                  Open

                                                  return 0
                                  Severity: Major
                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                    Avoid too many return statements within this function.
                                    Open

                                                return -((-1)**self._sign)
                                    Severity: Major
                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                      Avoid too many return statements within this function.
                                      Open

                                                      return Decimal(other)  # Can't both be infinity here
                                      Severity: Major
                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                        Avoid too many return statements within this function.
                                        Open

                                                    return self
                                        Severity: Major
                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                          Avoid too many return statements within this function.
                                          Open

                                                      return -1
                                          Severity: Major
                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                            Avoid too many return statements within this function.
                                            Open

                                                        return self
                                            Severity: Major
                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                              Avoid too many return statements within this function.
                                              Open

                                                          return (-1)**self._sign
                                              Severity: Major
                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                Avoid too many return statements within this function.
                                                Open

                                                            return (-1)**self._sign
                                                Severity: Major
                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                  Avoid too many return statements within this function.
                                                  Open

                                                                  return -((-1)**other._sign)
                                                  Severity: Major
                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                    Avoid too many return statements within this function.
                                                    Open

                                                                return ans
                                                    Severity: Major
                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                      Avoid too many return statements within this function.
                                                      Open

                                                                      return context._raise_error(DivisionUndefined, '0 % 0')
                                                      Severity: Major
                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                        Avoid too many return statements within this function.
                                                        Open

                                                                    return _dec_from_triple(self._sign, self_padded, Etop)
                                                        Severity: Major
                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                          Avoid too many return statements within this function.
                                                          Open

                                                                              return None
                                                          Severity: Major
                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                            Avoid too many return statements within this function.
                                                            Open

                                                                            return None
                                                            Severity: Major
                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                              Avoid too many return statements within this function.
                                                              Open

                                                                      return ans
                                                              Severity: Major
                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                Avoid too many return statements within this function.
                                                                Open

                                                                                        return _NegativeOne
                                                                Severity: Major
                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                  Avoid too many return statements within this function.
                                                                  Open

                                                                                      return _One
                                                                  Severity: Major
                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                    Avoid too many return statements within this function.
                                                                    Open

                                                                                return _NegativeOne
                                                                    Severity: Major
                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                      Avoid too many return statements within this function.
                                                                      Open

                                                                                      return other._fix_nan(context)
                                                                      Severity: Major
                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                        Avoid too many return statements within this function.
                                                                        Open

                                                                                        return _dec_from_triple(result_sign, '0', 0)
                                                                        Severity: Major
                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                          Avoid too many return statements within this function.
                                                                          Open

                                                                                          return _dec_from_triple(result_sign, '0', 0)
                                                                          Severity: Major
                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                            Avoid too many return statements within this function.
                                                                            Open

                                                                                    return _Zero
                                                                            Severity: Major
                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                              Avoid too many return statements within this function.
                                                                              Open

                                                                                          return "+Normal"
                                                                              Severity: Major
                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                Avoid too many return statements within this function.
                                                                                Open

                                                                                        return d
                                                                                Severity: Major
                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                  Avoid too many return statements within this function.
                                                                                  Open

                                                                                                  return _dec_from_triple(sign, '0', context.Etiny())
                                                                                  Severity: Major
                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                    Avoid too many return statements within this function.
                                                                                    Open

                                                                                            return product.__add__(third, context)
                                                                                    Severity: Major
                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                      Avoid too many return statements within this function.
                                                                                      Open

                                                                                                      return None
                                                                                      Severity: Major
                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                        Avoid too many return statements within this function.
                                                                                        Open

                                                                                                    return None
                                                                                        Severity: Major
                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                          Avoid too many return statements within this function.
                                                                                          Open

                                                                                                      return context._raise_error(InvalidOperation,
                                                                                          Severity: Major
                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                            Avoid too many return statements within this function.
                                                                                            Open

                                                                                                                return _NegativeOne
                                                                                            Severity: Major
                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                              Avoid too many return statements within this function.
                                                                                              Open

                                                                                                              return _One
                                                                                              Severity: Major
                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                Avoid too many return statements within this function.
                                                                                                Open

                                                                                                        return ans
                                                                                                Severity: Major
                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                  Avoid too many return statements within this function.
                                                                                                  Open

                                                                                                              return ans
                                                                                                  Severity: Major
                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                    Avoid too many return statements within this function.
                                                                                                    Open

                                                                                                            return _dec_from_triple(self._sign,
                                                                                                    Severity: Major
                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                      Avoid too many return statements within this function.
                                                                                                      Open

                                                                                                                  return ans
                                                                                                      Severity: Major
                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                        Avoid too many return statements within this function.
                                                                                                        Open

                                                                                                                    return ans._fix(context)
                                                                                                        Severity: Major
                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                          Avoid too many return statements within this function.
                                                                                                          Open

                                                                                                                      return ans
                                                                                                          Severity: Major
                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                            Avoid too many return statements within this function.
                                                                                                            Open

                                                                                                                                return None
                                                                                                            Severity: Major
                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                              Avoid too many return statements within this function.
                                                                                                              Open

                                                                                                                              return _One
                                                                                                              Severity: Major
                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                Avoid too many return statements within this function.
                                                                                                                Open

                                                                                                                        return ans
                                                                                                                Severity: Major
                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                  Avoid too many return statements within this function.
                                                                                                                  Open

                                                                                                                                      return _NegativeOne
                                                                                                                  Severity: Major
                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                    Avoid too many return statements within this function.
                                                                                                                    Open

                                                                                                                                    return _One
                                                                                                                    Severity: Major
                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                      Avoid too many return statements within this function.
                                                                                                                      Open

                                                                                                                                      return context._raise_error(DivisionByZero, 'x // 0',
                                                                                                                      Severity: Major
                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                        Avoid too many return statements within this function.
                                                                                                                        Open

                                                                                                                                return quotient, remainder
                                                                                                                        Severity: Major
                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                          Avoid too many return statements within this function.
                                                                                                                          Open

                                                                                                                                                  return None
                                                                                                                          Severity: Major
                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                            Avoid too many return statements within this function.
                                                                                                                            Open

                                                                                                                                    return remainder
                                                                                                                            Severity: Major
                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                              Avoid too many return statements within this function.
                                                                                                                              Open

                                                                                                                                      return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros)
                                                                                                                              Severity: Major
                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                Open

                                                                                                                                            return ans._fix(context)
                                                                                                                                Severity: Major
                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                  Open

                                                                                                                                              return ans
                                                                                                                                  Severity: Major
                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                    Open

                                                                                                                                                return context._raise_error(InvalidOperation,
                                                                                                                                    Severity: Major
                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                      Open

                                                                                                                                                          return _NegativeOne
                                                                                                                                      Severity: Major
                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                        Open

                                                                                                                                                    return ans
                                                                                                                                        Severity: Major
                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                          Open

                                                                                                                                                          return ans
                                                                                                                                          Severity: Major
                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                            Open

                                                                                                                                                                return context._raise_error(InvalidOperation, '0 * (+-)INF')
                                                                                                                                            Severity: Major
                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                              Open

                                                                                                                                                          return context._raise_error(InvalidOperation,
                                                                                                                                              Severity: Major
                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                Open

                                                                                                                                                                return None
                                                                                                                                                Severity: Major
                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                  Open

                                                                                                                                                              return context._raise_error(InvalidOperation,
                                                                                                                                                  Severity: Major
                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                    Open

                                                                                                                                                                        return _One
                                                                                                                                                    Severity: Major
                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                      Open

                                                                                                                                                              return ans
                                                                                                                                                      Severity: Major
                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                        Open

                                                                                                                                                                    return context._raise_error(DivisionImpossible)
                                                                                                                                                        Severity: Major
                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                          Open

                                                                                                                                                                              return context._raise_error(InvalidOperation,
                                                                                                                                                          Severity: Major
                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                            Open

                                                                                                                                                                                    return _One
                                                                                                                                                            Severity: Major
                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                              Open

                                                                                                                                                                              return _Zero
                                                                                                                                                              Severity: Major
                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                Open

                                                                                                                                                                        return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1),
                                                                                                                                                                Severity: Major
                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                  Open

                                                                                                                                                                                  return "+Zero"
                                                                                                                                                                  Severity: Major
                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                    Open

                                                                                                                                                                                    return "+Subnormal"
                                                                                                                                                                    Severity: Major
                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                      Open

                                                                                                                                                                                  return ans
                                                                                                                                                                      Severity: Major
                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                        Open

                                                                                                                                                                                    return context._raise_error(DivisionImpossible)
                                                                                                                                                                        Severity: Major
                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                          Open

                                                                                                                                                                                  return self._divide(other, context)[0]
                                                                                                                                                                          Severity: Major
                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                            Open

                                                                                                                                                                                        return context._raise_error(InvalidOperation,
                                                                                                                                                                            Severity: Major
                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                              Open

                                                                                                                                                                                      return _dec_from_triple(sign, str(base), 0)
                                                                                                                                                                              Severity: Major
                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                Open

                                                                                                                                                                                                        return None
                                                                                                                                                                                Severity: Major
                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                  Open

                                                                                                                                                                                              return None
                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                    Open

                                                                                                                                                                                                        return _One
                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                      Open

                                                                                                                                                                                                      return _NegativeOne
                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                        Open

                                                                                                                                                                                                        return _SignedInfinity[resultsign]
                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                          Open

                                                                                                                                                                                                      return ans
                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                            Open

                                                                                                                                                                                                            return ans, ans
                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                              Open

                                                                                                                                                                                                              return (context._raise_error(DivisionByZero, 'x // 0', sign),
                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                Open

                                                                                                                                                                                                        return Decimal(self)
                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                  Open

                                                                                                                                                                                                                          return None
                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                    Open

                                                                                                                                                                                                                    return _SignedInfinity[result_sign]
                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                      Open

                                                                                                                                                                                                                  return ans._fix(context)
                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                        Open

                                                                                                                                                                                                                return ans._fix(context)
                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                          Open

                                                                                                                                                                                                                          return context._raise_error(DivisionUndefined, '0 // 0')
                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                            Open

                                                                                                                                                                                                                        return modulo._fix_nan(context)
                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                              Open

                                                                                                                                                                                                                              return None
                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                Open

                                                                                                                                                                                                                        return ans
                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                          return ans
                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                            return ans._fix(context)
                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                  return context._raise_error(InvalidOperation,
                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                    return _dec_from_triple(0, str(xc), xe)
                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                          return None
                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                            return None
                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                              return _dec_from_triple(result_sign, '0', 0)
                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                            return ans._fix(context)
                                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                              return context._raise_error(InvalidOperation,
                                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                                                return context._raise_error(InvalidOperation,
                                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                                      return "-Zero"
                                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                                    return context._raise_error(InvalidOperation,
                                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                                          return None
                                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                                        return _dec_from_triple(result_sign, '1'+'0'*-exp, exp)
                                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                                                  return _NegativeOne
                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                                        return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1),
                                                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                  return "-Subnormal"
                                                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                                                                return "-Normal"
                                                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                                                      return context._raise_error(DivisionUndefined, '0 / 0')
                                                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                                                    return context._raise_error(InvalidOperation,
                                                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                                                      return context._raise_error(InvalidOperation,
                                                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                                                                return _One
                                                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                                                              return _NegativeOne
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                                                        return _dec_from_triple(self._sign,
                                                                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                                  return _SignedInfinity[result_sign]
                                                                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                                                                            return ans
                                                                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                                                                    Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                                                              return ans
                                                                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                                                                      Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                                                                    return context._raise_error(DivisionByZero, 'x / 0', sign)
                                                                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                                                                        Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                                                                              return None
                                                                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                                                                          Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                                                                            return _SignedInfinity[result_sign]
                                                                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                                                                            Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                                                                          return _One
                                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                                              Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

                                                                                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                                                                        return ans
                                                                                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                                                                                Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.py - About 30 mins to fix

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

                                                                                                                                                                                                                                                                                      def __abs__(self, round=True, context=None):
                                                                                                                                                                                                                                                                                          """Returns the absolute value of self.
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                          If the keyword argument 'round' is false, do not round.  The
                                                                                                                                                                                                                                                                                          expression self.__abs__(round=False) is equivalent to
                                                                                                                                                                                                                                                                                  Severity: Minor
                                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 from_float has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                                      def from_float(cls, f):
                                                                                                                                                                                                                                                                                          """Converts a float to a decimal number, exactly.
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                          Note that Decimal.from_float(0.1) is not the same as Decimal('0.1').
                                                                                                                                                                                                                                                                                          Since 0.1 is not exactly representable in binary floating point, the
                                                                                                                                                                                                                                                                                  Severity: Minor
                                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _format_align has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                                  def _format_align(sign, body, spec):
                                                                                                                                                                                                                                                                                      """Given an unpadded, non-aligned numeric string 'body' and sign
                                                                                                                                                                                                                                                                                      string 'sign', add padding and alignment conforming to the given
                                                                                                                                                                                                                                                                                      format specifier dictionary 'spec' (as produced by
                                                                                                                                                                                                                                                                                      parse_format_specifier).
                                                                                                                                                                                                                                                                                  Severity: Minor
                                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _rescale has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                                      def _rescale(self, exp, rounding):
                                                                                                                                                                                                                                                                                          """Rescale self so that the exponent is exp, either by padding with zeros
                                                                                                                                                                                                                                                                                          or by truncating digits, using the given rounding mode.
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                          Specials are returned without change.  This operation is
                                                                                                                                                                                                                                                                                  Severity: Minor
                                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 _format_number has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                                  def _format_number(is_negative, intpart, fracpart, exp, spec):
                                                                                                                                                                                                                                                                                      """Format a number, given the following data:
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                      is_negative: true if the number is negative, else false
                                                                                                                                                                                                                                                                                      intpart: string of digits that must appear before the decimal point
                                                                                                                                                                                                                                                                                  Severity: Minor
                                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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 __pos__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                                                      def __pos__(self, context=None):
                                                                                                                                                                                                                                                                                          """Returns a copy, unless it is a sNaN.
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                          Rounds the number (if more then precision digits)
                                                                                                                                                                                                                                                                                          """
                                                                                                                                                                                                                                                                                  Severity: Minor
                                                                                                                                                                                                                                                                                  Found in AppPkg/Applications/Python/Python-2.7.2/Lib/decimal.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

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

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

                                                                                                                                                                                                                                                                                  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