##// END OF EJS Templates
- Remove changelog so we can at least locally we can use symlinks....
- Remove changelog so we can at least locally we can use symlinks. The symlink will NOT be committed until we figure out a good solution for win32 users. - Add support for finding class docs when instances are queried. Closes report by John Hunter on the list.

File last commit:

r1049:c87d640e
r1050:e13752b2
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)