Exemple #1
0
def check_code(code, complexity=-1):
    warnings = pyflakes.check(code, '<stdin>')
    if complexity > -1:
        warnings += mccabe.get_code_complexity(code, complexity)
    return warnings
Exemple #2
0
 def test_import_exception_in_scope(self):
     self.assertEqual(check(code_import_exception), 0)
Exemple #3
0
def check_code(code, complexity=-1):
    warnings = pyflakes.check(code, 'stdin')
    warnings += pep8style.input_file(StringIO(code))
    if complexity > -1:
        warnings += mccabe.get_code_complexity(code, complexity)
    return warnings
Exemple #4
0
def pyflakes_check(code_string):
    pyflakes.check(code_string, '')
Exemple #5
0
 def test_exception(self):
     for c in (code, code2, code3):
         warnings = check(code)
         self.assertEqual(warnings, 0, code)
Exemple #6
0
def check_code(code, complexity=-1):
    warnings = pyflakes.check(code, 'stdin')
    warnings += pep8style.input_file(StringIO(code))
    if complexity > -1:
        warnings += mccabe.get_code_complexity(code, complexity)
    return warnings
Exemple #7
0
def check_code(code, complexity=-1):
    warnings = pyflakes.check(code, '<stdin>')
    if complexity > -1:
        warnings += mccabe.get_code_complexity(code, complexity)
    return warnings
Exemple #8
0
def check_code(code, ignore=(), complexity=-1):
    warnings = pyflakes.check(code, ignore, "stdin")
    warnings += pep8style.input_file(None, lines=code.split("\n"))
    if complexity > -1:
        warnings += mccabe.get_code_complexity(code, complexity)
    return warnings
 def test_import_exception_in_scope(self):
     self.assertEqual(check(code_import_exception), 0)
 def test_exception(self):
     for c in (code, code2, code3):
         warnings = check(code)
         self.assertEqual(warnings, 0, code)