##// END OF EJS Templates
Moved a few things back to InteractiveShell....
Moved a few things back to InteractiveShell. The following attributes were still needed in the base InteractiveShell class. * autoindent. This is used in runlines. * separate_in, separate_out, separate_out2 are used in prompt management. Eventually these things should be refactored and moved to the frontends, just not yet.

File last commit:

r2460:e8303d57
r2766:c9e054c3
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')