##// END OF EJS Templates
Merge pull request #1288 from takluyver/reset-stdinless...
Merge pull request #1288 from takluyver/reset-stdinless Don't ask for confirmation when stdin isn't available for actions like %reset or %history -f. Since the change is applied only on the Stdin error, once the notebook gets a stdin, it will naturally work.

File last commit:

r2460:e8303d57
r5921:c8d17d85 merge
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')