##// END OF EJS Templates
Fix name pollution of interactive namespace in pylab mode....
Fix name pollution of interactive namespace in pylab mode. All names loaded by pylab at startup must be tracked so that %whos doesn't show the entire pylab namespace (making it useless in practice).

File last commit:

r2460:e8303d57
r3195:3777d779
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')