##// END OF EJS Templates
Remove test suite from win32 start menu....
Remove test suite from win32 start menu. Since the test suite exits immediately upon completion, it makes no sense to run it from a menu, as it's impossible then to see/copy the results. Anyone who is going to report anything should run it from a terminal so the results stay on screen.

File last commit:

r1637:3d4a1f01
r2114:df193b2f
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