##// 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:

r4838:69b4a3aa
r4915:76f9a747
Show More
setup3.py
14 lines | 380 B | text/x-python | PythonLexer
import os.path
from setuptools import setup
from setupbase import (setup_args, find_scripts, find_packages, find_package_data)
setup_args['entry_points'] = find_scripts(True, suffix='3')
setup_args['packages'] = find_packages()
setup_args['package_data'] = find_package_data()
def main():
setup(use_2to3 = True, **setup_args)
if __name__ == "__main__":
main()