##// END OF EJS Templates
Fix a completion crasher (index error during completion)....
Fix a completion crasher (index error during completion). Fix completion for user-created object by refactoring

File last commit:

r964:0a2f2117
r1624:c4aff61c
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