##// END OF EJS Templates
Separate InteractiveShell.input_splitter into two instances....
Separate InteractiveShell.input_splitter into two instances. * input_splitter is used to detect when a cell is complete * input_transformer_manager transforms completed cells Closes gh-3178

File last commit:

r2460:e8303d57
r10254:014d7ca7
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')