##// END OF EJS Templates
i1673 implementation of py3 proper error handling...
i1673 implementation of py3 proper error handling I refactored ultratab.py a bit. `structured_traceback` function was much too long. I extracted some of the code to separate methods. I added support for py3 exceptions which store information about previous exceptions in their `__context__`.

File last commit:

r13387:3b4dba0a
r17157:552f2a77
Show More
setupegg.py
7 lines | 217 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
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))