##// END OF EJS Templates
don't rely on hasattr in utils.dir2...
don't rely on hasattr in utils.dir2 Some remote object libraries (e.g. Pyro) will lie to hasattr, not raising AttributeError until the attr is actually requested. This prevents these AttributeErrors from crashing IPython. closes gh-543 Signed-off-by: MinRK <benjaminrk@gmail.com>

File last commit:

r2460:e8303d57
r4113:b9b8f448
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')