django/django

View on GitHub
django/db/backends/utils.py

Summary

Maintainability
B
4 hrs
Test Coverage

File utils.py has 267 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import datetime
import decimal
import functools
import logging
import time
Severity: Minor
Found in django/db/backends/utils.py - About 2 hrs to fix

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

    def split_tzname_delta(tzname):
        """
        Split a time zone name into a 3-tuple of (name, sign, offset).
        """
        for sign in ["+", "-"]:
    Severity: Minor
    Found in django/db/backends/utils.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 callproc has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def callproc(self, procname, params=None, kparams=None):
            # Keyword parameters for callproc aren't supported in PEP 249, but the
            # database driver may support them (e.g. oracledb).
            if kparams is not None and not self.db.features.supports_callproc_kwargs:
                raise NotSupportedError(
    Severity: Minor
    Found in django/db/backends/utils.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 typecast_timestamp has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def typecast_timestamp(s):  # does NOT store time zone information
        # "2005-07-29 15:48:00.590358-05"
        # "2005-07-29 09:56:00-05"
        if not s:
            return None
    Severity: Minor
    Found in django/db/backends/utils.py - About 25 mins to fix

    Cognitive Complexity

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

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

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

    Further reading

    There are no issues that match your filters.

    Category
    Status