##// END OF EJS Templates
Fixes to build system.
Fixes to build system.

File last commit:

r964:0a2f2117
r1522:2a174cb3
Show More
check_sources.py
14 lines | 257 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
vivainio
check_sources does some sanity checks to IPython source files
r498