hugoruscitti/pilas

View on GitHub
pilasengine/interprete/lanas.py

Summary

Maintainability
F
4 days
Test Coverage

Function keyPressEvent has a Cognitive Complexity of 76 (exceeds 5 allowed). Consider refactoring.
Open

    def keyPressEvent(self, event):
        # Permite usar tab como seleccionador de la palabra actual
        # en el popup de autocompletado.
        if event.key() in [Qt.Key_Tab]:
            if self.completer and self.completer.popup().isVisible():
Severity: Minor
Found in pilasengine/interprete/lanas.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

File lanas.py has 426 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- encoding: utf-8 -*-
# pilas engine: un motor para hacer videojuegos
#
# Copyright 2010-2014 - Hugo Ruscitti
# License: LGPLv3 (see http://www.gnu.org/licenses/lgpl.html)
Severity: Minor
Found in pilasengine/interprete/lanas.py - About 6 hrs to fix

    InterpreteLanas has 35 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class InterpreteLanas(editor_base.EditorBase):
        """Representa el widget del interprete.
    
        Esta instancia tiene como atributo "self.ventana" al
        al QWidget representado por la clase Ventana.
    Severity: Minor
    Found in pilasengine/interprete/lanas.py - About 4 hrs to fix

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

          def funcion_valores_autocompletado(self, texto):
              scope = self.interpreterLocals
              texto = texto.replace('(', ' ').split(' ')[-1]
              resultados = []
      
      
      Severity: Minor
      Found in pilasengine/interprete/lanas.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

      Avoid too many return statements within this function.
      Open

                          return
      Severity: Major
      Found in pilasengine/interprete/lanas.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                                return None
        Severity: Major
        Found in pilasengine/interprete/lanas.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                          return None
          Severity: Major
          Found in pilasengine/interprete/lanas.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return None
            Severity: Major
            Found in pilasengine/interprete/lanas.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                          return None
              Severity: Major
              Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                            return
                Severity: Major
                Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                  return
                  Severity: Major
                  Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                return None
                    Severity: Major
                    Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                  return None
                      Severity: Major
                      Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                        return
                        Severity: Major
                        Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                          return None
                          Severity: Major
                          Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                        return QTextEdit.keyPressEvent(self, event)
                            Severity: Major
                            Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                          return
                              Severity: Major
                              Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                        return QTextEdit.keyPressEvent(self, event)
                                Severity: Major
                                Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                                  Avoid too many return statements within this function.
                                  Open

                                                  return None
                                  Severity: Major
                                  Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                                    Avoid too many return statements within this function.
                                    Open

                                                    return None
                                    Severity: Major
                                    Found in pilasengine/interprete/lanas.py - About 30 mins to fix

                                      Avoid too many return statements within this function.
                                      Open

                                                      return None
                                      Severity: Major
                                      Found in pilasengine/interprete/lanas.py - About 30 mins to fix

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

                                                if event.key() in [Qt.Key_Tab]:
                                                    if self.completer and self.completer.popup().isVisible():
                                                        event.ignore()
                                                        nuevo_evento = QKeyEvent(QKeyEvent.KeyPress, Qt.Key_Return, Qt.NoModifier)
                                                        try:
                                        Severity: Major
                                        Found in pilasengine/interprete/lanas.py and 1 other location - About 5 hrs to fix
                                        pilasengine/interprete/editor.py on lines 382..391

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

                                        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 2 locations. Consider refactoring.
                                        Open

                                                if '.' in texto:
                                                    palabras = texto.split('.')
                                                    ultima = palabras.pop()
                                                    prefijo = '.'.join(palabras)
                                        
                                        
                                        Severity: Minor
                                        Found in pilasengine/interprete/lanas.py and 1 other location - About 35 mins to fix
                                        pilasengine/interprete/editorbase/autocomplete.py on lines 161..176

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

                                        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 _get_position_in_block(self):
                                                tc = self.textCursor()
                                                position = tc.positionInBlock() - 3
                                                return position
                                        Severity: Minor
                                        Found in pilasengine/interprete/lanas.py and 1 other location - About 35 mins to fix
                                        pilasengine/interprete/editor.py on lines 445..448

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

                                        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