The async.send method wasn't really doing anything useful. It was just calling the...
authorBen <mastahyeti@gmail.com>
Tue, 17 Jan 2012 21:20:52 +0000 (15:20 -0600)
committerBen <mastahyeti@gmail.com>
Tue, 17 Jan 2012 21:20:52 +0000 (15:20 -0600)
requests/async.py

index 36f6c5a..53aa841 100644 (file)
@@ -52,7 +52,7 @@ def send(r, pool=None):
     and can hence limit concurrency."""
 
     if pool != None:
-        print pool.full()
+
         return pool.spawn(r.send)
 
     return gevent.spawn(r.send)