##// END OF EJS Templates
Cleaning up the IPython docs. I have removed old README files that were outdated and being maintained...
Cleaning up the IPython docs. I have removed old README files that were outdated and being maintained in the top-level dir. I have removed all mentions of the old lyx based docs. Created subdirectories for man and emacs stuff. Having fun.

File last commit:

r964:0a2f2117
r1250:f658828f
Show More
check_sources.py
14 lines | 257 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