예제 #1
0
파일: run.py 프로젝트: jblomo/dotfiles
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
파일: run.py 프로젝트: brightwill/flake8
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
파일: run.py 프로젝트: pombredanne/toppatch
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)