chrislit/abydos

View on GitHub

Showing 4,191 of 4,191 total issues

File _beider_morse_data.py has 5470 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright 2014-2020 by Christopher C. Little.
# This file is part of Abydos.
#
# This file is based on Alexander Beider and Stephen P. Morse's implementation
# of the Beider-Morse Phonetic Matching (BMPM) System, available at
Severity: Major
Found in abydos/phonetic/_beider_morse_data.py - About 2 wks to fix

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

        def encode(self, word: str) -> str:
            """Return the phonet code for a word.
    
            Parameters
            ----------
    Severity: Minor
    Found in abydos/phonetic/_phonet.py - About 1 wk 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

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    _GEN_RULES_POLISH = (
        # CONVERTING FEMININE TO MASCULINE
        ('ska', '', '$', 'ski'),
        ('cka', '', '$', 'tski'),
        ('lowa', '', '$', '(lova|lof|l|el)'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 1 other location - About 1 wk to fix
    abydos/phonetic/_beider_morse_data.py on lines 5634..5783

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

    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

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    _ASH_RULES_POLISH = (
        # CONVERTING FEMININE TO MASCULINE
        ('ska', '', '$', 'ski'),
        ('cka', '', '$', 'tski'),
        ('lowa', '', '$', '(lova|lof|l|el)'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 1 other location - About 1 wk to fix
    abydos/phonetic/_beider_morse_data.py on lines 2521..2670

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

    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

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

        def encode(self, word: str) -> str:
            """Return the Double Metaphone code for a word.
    
            Parameters
            ----------
    Severity: Minor
    Found in abydos/phonetic/_double_metaphone.py - About 1 wk 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

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    _GEN_RULES_GERMAN = (
        # CONSONANTS
        ('ewitsch', '', '$', 'evitS'),
        ('owitsch', '', '$', 'ovitS'),
        ('evitsch', '', '$', 'evitS'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 1 other location - About 5 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 5418..5518

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

    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

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    _ASH_RULES_GERMAN = (
        # CONSONANTS
        ('ziu', '', '', 'tsu'),
        ('zia', '', '', 'tsa'),
        ('zio', '', '', 'tso'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 1 other location - About 5 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 1986..2086

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

    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

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    _GEN_APPROX_ANY = (
        # VOWELS
        # "ALL" DIPHTHONGS are interchangeable BETWEEN THEM and with monophthongs of which they are composed ("D" means "diphthong")  # noqa: E501
        # {a,o} are totally interchangeable if non-stressed; in German "a/o" can actually be from "ä/ö" (that are equivalent to "e")  # noqa: E501
        # {i,e} are interchangeable if non-stressed, while in German "u" can actually be from "ü" (that is equivalent to "i")  # noqa: E501
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 2 other locations - About 5 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 1785..1884
    abydos/phonetic/_beider_morse_data.py on lines 4574..4664

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

    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

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    _GEN_RULES_ENGLISH = (
        # CONSONANTS
        ('’', '', '', ''),  # O’Neill
        ("'", '', '', ''),  # O’Neill
        ('mc', '^', '', 'mak'),  # McDonald
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 2 other locations - About 5 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 59..165
    abydos/phonetic/_beider_morse_data.py on lines 4574..4664

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

    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

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    _ASH_HEBREW_COMMON = (
        ('ts', '', '', 'C'),  # for not confusion Gutes [=guts] and Guts [=guc]
        ('tS', '', '', 'C'),  # same reason
        ('S', '', '', 's'),
        ('p', '', '', 'f'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 2 other locations - About 5 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 59..165
    abydos/phonetic/_beider_morse_data.py on lines 1785..1884

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

    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

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

    _ASH_RULES_CYRILLIC = (
        ('ця', '', '', 'tsa'),
        ('цю', '', '', 'tsu'),
        ('циа', '', '', 'tsa'),
        ('цие', '', '', 'tse'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 3 other locations - About 4 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 784..864
    abydos/phonetic/_beider_morse_data.py on lines 1588..1663
    abydos/phonetic/_beider_morse_data.py on lines 2675..2762

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

    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

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

    _GEN_RULES_PORTUGUESE = (
        ('kh', '', '', 'x'),  # foreign
        ('ch', '', '', 'S'),
        ('ss', '', '', 's'),
        ('sc', '', '[ei]', 's'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 3 other locations - About 4 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 784..864
    abydos/phonetic/_beider_morse_data.py on lines 1588..1663
    abydos/phonetic/_beider_morse_data.py on lines 5160..5235

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

    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

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

    _GEN_RULES_CYRILLIC = (
        ('ця', '', '', 'tsa'),
        ('цю', '', '', 'tsu'),
        ('циа', '', '', 'tsa'),
        ('цие', '', '', 'tse'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 3 other locations - About 4 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 784..864
    abydos/phonetic/_beider_morse_data.py on lines 2675..2762
    abydos/phonetic/_beider_morse_data.py on lines 5160..5235

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

    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

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

    _GEN_HEBREW_COMMON = (
        ('ts', '', '', 'C'),  # for not confusion Gutes [=guts] and Guts [=guc]
        ('tS', '', '', 'C'),  # same reason
        ('S', '', '', 's'),
        ('p', '', '', 'f'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 3 other locations - About 4 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 1588..1663
    abydos/phonetic/_beider_morse_data.py on lines 2675..2762
    abydos/phonetic/_beider_morse_data.py on lines 5160..5235

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

    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

    Cyclomatic complexity is too high in method encode. (209)
    Open

        def encode(self, word: str) -> str:
            """Return the Double Metaphone code for a word.
    
            Parameters
            ----------
    Severity: Minor
    Found in abydos/phonetic/_double_metaphone.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    _SEP_RULES_PORTUGUESE = (
        ('kh', '', '', 'x'),  # foreign
        ('ch', '', '', 'S'),
        ('ss', '', '', 's'),
        ('sc', '', '[ei]', 's'),
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 1 other location - About 4 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 2091..2180

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

    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

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    _GEN_RULES_GREEK = (
        (
            'αυ',
            '',
            '$',
    Severity: Major
    Found in abydos/phonetic/_beider_morse_data.py and 1 other location - About 4 days to fix
    abydos/phonetic/_beider_morse_data.py on lines 3709..3795

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

    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

    File _aline.py has 1627 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    # Copyright 2019-2020 by Christopher C. Little.
    # This file is part of Abydos.
    #
    # Abydos is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    Severity: Major
    Found in abydos/distance/_aline.py - About 4 days to fix

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

          def stem(self, word: str) -> str:
              """Return Porter stem.
      
              Parameters
              ----------
      Severity: Minor
      Found in abydos/stemmer/_porter.py - About 4 days to fix

      Cognitive Complexity

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

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

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

      Further reading

      File _phonet.py has 1551 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      # Copyright 2014-2020 by Christopher C. Little.
      # This file is part of Abydos.
      #
      # Abydos is free software: you can redistribute it and/or modify
      # it under the terms of the GNU General Public License as published by
      Severity: Major
      Found in abydos/phonetic/_phonet.py - About 4 days to fix
        Severity
        Category
        Status
        Source
        Language