##// END OF EJS Templates
update EvalFormatter to allow arbitrary expressions...
update EvalFormatter to allow arbitrary expressions EvalFormatter should now support arbitrary Python expressions, including slicing. Since slicing conflicts with the format_spec part of fancy formatting, there is a switch to restore format_spec behavior at the expense of slicing. Associated tests added as well.

File last commit:

r2460:e8303d57
r4654:8f553957
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')