##// END OF EJS Templates
- Create traceback formatter with NoColor scheme by default....
- Create traceback formatter with NoColor scheme by default. - Avoid O(N) lookup in data by using O(1) call.

File last commit:

r1637:3d4a1f01
r1758:e2cf978c
Show More
check_sources.py
15 lines | 258 B | text/x-python | PythonLexer
from IPython.external.path import path
fs = path('..').walkfiles('*.py')
for f in fs:
errs = ''
cont = f.bytes()
if '\t' in cont:
errs+='t'
if '\r' in cont:
errs+='r'
if errs:
print "%3s" % errs, f