Пример #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
Пример #2
0
 def test_import_exception_in_scope(self):
     self.assertEqual(check(code_import_exception), 0)
Пример #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
Пример #4
0
def pyflakes_check(code_string):
    pyflakes.check(code_string, '')
Пример #5
0
 def test_exception(self):
     for c in (code, code2, code3):
         warnings = check(code)
         self.assertEqual(warnings, 0, code)
Пример #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
Пример #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
Пример #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
Пример #9
0
 def test_import_exception_in_scope(self):
     self.assertEqual(check(code_import_exception), 0)
Пример #10
0
 def test_exception(self):
     for c in (code, code2, code3):
         warnings = check(code)
         self.assertEqual(warnings, 0, code)