##// END OF EJS Templates
use much faster regexp for ansi coloring...
use much faster regexp for ansi coloring ansispan function adapted from mmalecki/ansispan The easiest way to see how slow the old way was is to create a very large traceback (e.g. max recursion), which bring everything to a screeching halt (even future page loads, if the output is saved). Now a max recursion error draws in a second or two. closes #3198

File last commit:

r2460:e8303d57
r10250:719c4f8c
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')