##// END OF EJS Templates
check_sources does some sanity checks to IPython source files
vivainio -
Show More
@@ -0,0 +1,15 b''
1 from path import path
2 fs = path('..').walkfiles('*.py')
3
4 for f in fs:
5 errs = ''
6 cont = f.bytes()
7 if '\t' in cont:
8 errs+='t'
9
10 if '\r' in cont:
11 errs+='r'
12
13 if errs:
14 print "%3s" % errs, f
15 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now