##// END OF EJS Templates
Renamed __pretty__ to _repr_pretty_ and changed updated pretty.py...
Renamed __pretty__ to _repr_pretty_ and changed updated pretty.py * Throughout the codebase, __pretty__ has been changed to _repr_pretty_ to match general convention for special method names. * The logic in pretty.py now matches that in formatters.py in that formatters that are callables are tried first and then special methods are used.

File last commit:

r2460:e8303d57
r3879:4241df5e
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')