hackedteam/vector-edk

View on GitHub
AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py

Summary

Maintainability
F
1 mo
Test Coverage

Function test has a Cognitive Complexity of 391 (exceeds 5 allowed). Consider refactoring.
Open

    def test(self):

        a,b,c = 1,2,3
        for i in xrange(self.rounds):
Severity: Minor
Found in AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.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

File Constructs.py has 512 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from pybench import Test

class IfThenElse(Test):

    version = 2.0
Severity: Major
Found in AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py - About 1 day to fix

    Function test has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring.
    Open

        def test(self):
    
            l1 = range(100)
            for i in xrange(self.rounds):
                for i in l1:
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py - About 7 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 test has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def test(self):
    
            l1 = range(1000)
            l2 = range(10)
            l3 = range(5)
    Severity: Minor
    Found in AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 314..327
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

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

                if a == 1:
                    if b == 2:
                        if c != 3:
                            c = 3
                            b = 3
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 14..27
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 29..42
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 44..57
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 59..72
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 74..87
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 89..102
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 104..117
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 119..132
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 134..147
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 149..162
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 164..177
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 179..192
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 194..207
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 209..222
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 224..237
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 239..252
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 254..267
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 269..282
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 284..297
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 299..312
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 329..342
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 344..357
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 359..372
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 374..387
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 389..402
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 404..417
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 419..432
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 434..447
    AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Constructs.py on lines 449..462

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

    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