Browse Source

remove obsolete code

Waldecir Santos 12 years ago
parent
commit
416d13c854
1 changed files with 0 additions and 9 deletions
  1. 0 9
      tornado/server.py

+ 0 - 9
tornado/server.py

@@ -45,15 +45,6 @@ class QueryTestHandler(tornado.web.RequestHandler):
 
         self.write(worlds if queries > 0 else world)
 
-
-class SingleQueryTestHandler(tornado.web.RequestHandler):
-    @tornado.web.asynchronous
-    @gen.coroutine
-    def get(self):
-        worlds = []
-        random_id = random.randint(1, 10000)
-        self.write(world[0][0])
-
 application = tornado.web.Application([
     (r"/json", JsonSerializeTestHandler),
     (r"/db", QueryTestHandler),