##// END OF EJS Templates
Add tests and fixes to clearcmd extension, when using numpy.
Add tests and fixes to clearcmd extension, when using numpy.

File last commit:

r1637:3d4a1f01
r1844:6921c624
Show More
check_sources.py
15 lines | 258 B | text/x-python | PythonLexer
vivainio
move path to external
r964 from IPython.external.path import path
vivainio
merge all from 0.7.3 branch to trunk
r503 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
Ville M. Vainio
ileo: %lno magic allows quick note taking
r1637