##// END OF EJS Templates
Merge pull request #1377 from takluyver/i1375...
Merge pull request #1377 from takluyver/i1375 Non ascii history caused problems for the %hist command with the -f option to save to file. This adds a test and fixes it using io.open. closes #1375

File last commit:

r2460:e8303d57
r6122:fd42bee9 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')