##// 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:

r557:7007b8bb
r742:527ca8e6
Show More
update_revnum.py
14 lines | 353 B | text/x-python | PythonLexer
#!/usr/bin/env python
""" Change the revision number in Release.py """
import os
import re
rev = os.popen('svnversion ..').read().strip()
print "current rev is",rev
assert ':' not in rev
rfile = open('../IPython/Release.py').read()
newcont = re.sub(r'revision\s*=.*', "revision = '%s'" % rev, rfile)
open('../IPython/Release.py','w').write(newcont)