##// END OF EJS Templates
Merge pull request #1742 from takluyver/customexc-check-once...
Merge pull request #1742 from takluyver/customexc-check-once Check for custom_exceptions only once We already catch custom exceptions in run_code and call the custom handler, but we were checking for them again in showtraceback. This just removes the second check, so custom exception handlers can safely call showtraceback().

File last commit:

r2460:e8303d57
r7123:de0b0951 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')