ssokolow/quicktile

View on GitHub

Showing 197 of 198 total issues

File util.py has 736 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""Helper functions and classes"""

__author__ = "Stephan Sokolow (deitarion/SSokolow)"
__license__ = "GNU GPL 2.0 or later"

Severity: Major
Found in quicktile/util.py - About 1 day to fix

    File test_util.py has 705 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    # -*- coding: utf-8 -*-
    """Tests for ``quicktile.util`` module"""
    
    __author__ = "Stephan Sokolow (deitarion/SSokolow)"
    __license__ = "GNU GPL 2.0 or later"
    Severity: Major
    Found in tests/test_util.py - About 1 day to fix

      File commands.py has 422 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      """Available window-management commands
      
      .. todo:: Replace varargs with a dict so ``CommandCBWrapper`` can be strict.
      """
      
      
      Severity: Minor
      Found in quicktile/commands.py - About 6 hrs to fix

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

                test_region.set_panels([
                    StrutPartial(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 3200, 4479),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 1280, 3199),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 1279),
        Severity: Major
        Found in tests/test_util.py and 2 other locations - About 5 hrs to fix
        tests/test_util.py on lines 662..667
        tests/test_util.py on lines 769..774

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

        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

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

                test_region.set_panels([
                    StrutPartial(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 3200, 4479),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 1280, 3199),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 1279),
        Severity: Major
        Found in tests/test_util.py and 2 other locations - About 5 hrs to fix
        tests/test_util.py on lines 597..602
        tests/test_util.py on lines 769..774

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

        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

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

                test_region.set_panels([
                    StrutPartial(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 3200, 4479),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 1280, 3199),
                    StrutPartial(0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 1279),
        Severity: Major
        Found in tests/test_util.py and 2 other locations - About 5 hrs to fix
        tests/test_util.py on lines 597..602
        tests/test_util.py on lines 662..667

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

        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

            def test_clamp_idx(self):
                """Test that clamp_idx(wrap=False) saturates as expected"""
                self.assertEqual(clamp_idx(5, 10, wrap=False), 5)
                self.assertEqual(clamp_idx(-1, 10, wrap=False), 0)
                self.assertEqual(clamp_idx(11, 10, wrap=False), 9)
        Severity: Major
        Found in tests/test_util.py and 1 other location - About 4 hrs to fix
        tests/test_util.py on lines 27..32

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

        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

            def test_clamp_idx_wrap(self):
                """Test that clamp_idx(wrap=True) wraps as expected"""
                self.assertEqual(clamp_idx(5, 10, wrap=True), 5)
                self.assertEqual(clamp_idx(-1, 10, wrap=True), 9)
                self.assertEqual(clamp_idx(11, 10, wrap=True), 1)
        Severity: Major
        Found in tests/test_util.py and 1 other location - About 4 hrs to fix
        tests/test_util.py on lines 34..39

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

        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 wm.py has 361 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        """Wrapper around libwnck for interacting with the window manager"""
        
        __author__ = "Stephan Sokolow (deitarion/SSokolow)"
        __license__ = "GNU GPL 2.0 or later"
        
        
        Severity: Minor
        Found in quicktile/wm.py - About 4 hrs to fix

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

                  test_region.set_panels([StrutPartial(*x) for x in [
                      [49, 0, 0, 0, 24, 1199, 0, 0, 0, 0, 0, 0],
                      [1969, 0, 0, 0, 24, 1023, 0, 0, 0, 0, 0, 0],
                      [0, 0, 24, 0, 0, 0, 0, 0, 0, 1919, 0, 0],
                      [0, 0, 24, 0, 0, 0, 0, 0, 1920, 3199, 0, 0]]])
          Severity: Major
          Found in tests/test_util.py and 2 other locations - About 4 hrs to fix
          tests/test_util.py on lines 836..840
          tests/test_util.py on lines 874..878

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

          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

                  test_region.set_panels([StrutPartial(*x) for x in [
                      [49, 0, 0, 0, 24, 1199, 0, 0, 0, 0, 0, 0],
                      [1969, 0, 0, 0, 24, 1199, 0, 0, 0, 0, 0, 0],
                      [0, 0, 24, 0, 0, 0, 0, 0, 0, 1919, 0, 0],
                      [0, 0, 24, 0, 0, 0, 0, 0, 1920, 3839, 0, 0]]])
          Severity: Major
          Found in tests/test_util.py and 2 other locations - About 4 hrs to fix
          tests/test_util.py on lines 855..859
          tests/test_util.py on lines 874..878

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

          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

                  test_region.set_panels([StrutPartial(*x) for x in [
                      [49, 0, 0, 0, 24, 1023, 0, 0, 0, 0, 0, 0],
                      [1329, 0, 0, 0, 24, 1199, 0, 0, 0, 0, 0, 0],
                      [0, 0, 24, 0, 0, 0, 0, 0, 0, 1023, 0, 0],
                      [0, 0, 24, 0, 0, 0, 0, 0, 1024, 3199, 0, 0]]])
          Severity: Major
          Found in tests/test_util.py and 2 other locations - About 4 hrs to fix
          tests/test_util.py on lines 836..840
          tests/test_util.py on lines 855..859

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

          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 gather_vars has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
          Open

          def gather_vars(frame_rec: inspect.FrameInfo,
                          local_vars: Dict[str, Any]) -> Dict[str, Any]:
              """Extract all the local variables from the given traceback frame using
              :func:`lookup`.
          
          
          Severity: Minor
          Found in quicktile/gtkexcepthook.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 load_config has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
          Open

          def load_config(path) -> ConfigParser:
              """Load the config file from the given path, applying fixes as needed.
              If it does not exist, create it from the configuration defaults.
          
              :param path: The path to load or initialize.
          Severity: Minor
          Found in quicktile/config.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

          Cyclomatic complexity is too high in function load_config. (18)
          Open

          def load_config(path) -> ConfigParser:
              """Load the config file from the given path, applying fixes as needed.
              If it does not exist, create it from the configuration defaults.
          
              :param path: The path to load or initialize.
          Severity: Minor
          Found in quicktile/config.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

          Cyclomatic complexity is too high in method __new__. (17)
          Open

              def __new__(cls, x: int = None, y: int = None,
                          width: int = None, height: int = None,
                          x2: int = None, y2: int = None):
          
                  # -- Check for a valid combination of arguments --
          Severity: Minor
          Found in quicktile/util.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

                      self.assertEqual(rect.moved_off_of(
                          Rectangle(x=rect.x + 2, y=rect.y + 5,
                                    width=-thickness, height=-length)),
                          rect._replace(x=2 + 2))
          Severity: Major
          Found in tests/test_util.py and 1 other location - About 3 hrs to fix
          tests/test_util.py on lines 395..398

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

          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

                      self.assertEqual(rect.moved_off_of(
                          Rectangle(x=rect.x + 5, y=rect.y + 2,
                                    width=-length, height=-thickness)),
                          rect._replace(y=4 + 2))
          Severity: Major
          Found in tests/test_util.py and 1 other location - About 3 hrs to fix
          tests/test_util.py on lines 403..406

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

          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 function main. (16)
          Open

          def main() -> None:
              """setuptools-compatible entry point
          
              :raises XInitError: Failed to connect to the X server.
          
          
          Severity: Minor
          Found in quicktile/__main__.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

                  self.assertEqual(test_region.clip_to_usable_region(
                      Rectangle(3300, bottom - panel - 4, 3, 4 + panel + 4)),
                      Rectangle(3300, bottom - panel - 4, 3, 4))
          Severity: Major
          Found in tests/test_util.py and 1 other location - About 3 hrs to fix
          tests/test_util.py on lines 692..694

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

          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

          Severity
          Category
          Status
          Source
          Language