##// END OF EJS Templates
Work again on bug 269966....
Work again on bug 269966. I think this time we do have a robust fix. I added tests that do fail after John Hunter's example, so if this one ever tries to return, we should catch it right away. Very, very nasty bug...

File last commit:

r1644:e9ae4f1d
r1916:7b7637de
Show More
setupegg.py
14 lines | 341 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import sys
# now, import setuptools and call the actual setup
import setuptools
# print sys.argv
#sys.argv=['','bdist_egg']
execfile('setup.py')
# clean up the junk left around by setuptools
if "develop" not in sys.argv:
os.system('rm -rf ipython.egg-info build')