Displaying 1 result from an estimated 1 matches for "all_lint".
Did you mean:
all_libs
2015 Oct 09
3
Python version for scripts in LLVM?
...sion 249819)
+++ lint/cpp_lint.py (working copy)
@@ -6,6 +6,7 @@
# TODO: add unittests for the verifier functions:
# http://docs.python.org/library/unittest.html .
+from __future__ import print_function
import common_lint
import re
import sys
@@ -86,7 +87,7 @@
def CppLintMain(filenames):
all_lint = common_lint.RunLintOverAllFiles(CppLint(), filenames)
for lint in all_lint:
- print '%s:%d:%s' % (lint[0], lint[1], lint[2])
+ print('%s:%d:%s' % (lint[0], lint[1], lint[2]))
return 0
Index: shuffle_fuzz.py
==========================================================...