##// END OF EJS Templates
inputhook: make PyQt4 plays nicer with pyreadline...
inputhook: make PyQt4 plays nicer with pyreadline PyQt4's own input hook is not really appropriate when PyReadline is active (and possibly other readline packages running the PyOS_InputHook repeatedly). Arguably this should be fixed in PyQt4 itself, but in the meantime we can install a local hook which does the Qt event loop processing in a less aggressive way.

File last commit:

r2460:e8303d57
r4915:76f9a747
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')