##// END OF EJS Templates
Monkeypatch Tornado 2.1.1 so it works with Google Chrome 16....
Monkeypatch Tornado 2.1.1 so it works with Google Chrome 16. We're just applying manually a fix from Tornado itself, see for details: https://github.com/facebook/tornado/issues/385 https://github.com/facebook/tornado/commit/84d7b458f956727c3b0d6710

File last commit:

r4924:113dc5b1
r5240:113b26e6
Show More
setup.py
11 lines | 200 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""This calls the setup routine for Python 2 or 3 as required."""
import sys
if sys.version_info[0] >= 3:
from setup3 import main
else:
from setup2 import main
main()