##// END OF EJS Templates
Remove input_prefilter hook...
Remove input_prefilter hook Our code already doesn't call this hook (as pointed out in gh-4709), and probably hasn't for some time, so it seems ~no-one is relying on it. We have much more powerful APIs to do the same thing.

File last commit:

r13387:3b4dba0a
r13894:1b04c9a0
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'))