Browse Source

Merge branch 'python-r8' of https://github.com/methane/FrameworkBenchmarks into PR630

Conflicts:
	tornado/server.py
Mike Smith 11 years ago
parent
commit
6af24f4602
2 changed files with 2 additions and 2 deletions
  1. 1 1
      toolset/setup/linux/installer.py
  2. 1 1
      tornado/server.py

+ 1 - 1
toolset/setup/linux/installer.py

@@ -347,7 +347,7 @@ class Installer:
 
     easy_install('simplejson==3.3.1', two=True, three=True, pypy=False)
     easy_install('ujson==1.33', three=True)
-    easy_install('https://github.com/surfly/gevent/releases/download/1.0rc3/gevent-1.0rc3.tar.gz', three=False)
+    easy_install('gevent==1.0')
     easy_install('uwsgi', three=True)  # uwsgi is released too often to stick on single version.
 
     # Gunicorn

+ 1 - 1
tornado/server.py

@@ -5,7 +5,7 @@ import json
 import motor
 import tornado.ioloop
 import tornado.web
-from tornado import gen, escape
+from tornado import gen
 import tornado.options
 from tornado.options import options
 import tornado.httpserver