##// END OF EJS Templates
- Implement a traits-aware tab-completer. See ipy_traits_completer in...
- Implement a traits-aware tab-completer. See ipy_traits_completer in Extensions/ for details on how to use it. - Fix a bug reported by Stefan when using psearch on traits objects. - Small but important foo? bugfix with class docstrings.

File last commit:

r503:b114b8cd
r742:527ca8e6
Show More
check_sources.py
14 lines | 240 B | text/x-python | PythonLexer
from 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