##// END OF EJS Templates
Implement support for 'cell' mode with Ctrl-Enter....
Implement support for 'cell' mode with Ctrl-Enter. Now, once c-enter has been used, the widget will continue accepting more input just as if the input was indented: even complete expressions won't trigger execution, until an extra blank line (or Shift-Enter) is used.

File last commit:

r2460:e8303d57
r3004:60bf0975
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')