The async.send method wasn't really doing anything useful. It was just calling the...
authorBen <mastahyeti@gmail.com>
Tue, 17 Jan 2012 21:21:09 +0000 (15:21 -0600)
committerBen <mastahyeti@gmail.com>
Tue, 17 Jan 2012 21:21:09 +0000 (15:21 -0600)
commite38046e6c65b8f03026d13d339a9bacf849b2d85
tree2d1af2fe784a8a71ea0aca8f0f3312a90c173cfc
parent97be9ee4cd6326bf7551f7a737877ef2e368ef20
The async.send method wasn't really doing anything useful. It was just calling the r.send() method of the Request object 'r'. It took an optional kwarg pools, and assigned it to r._pools which isn't used by anything. This situation was eaither broken or not fully implemented yet. I modified async.map to call r.send rather than send(r) and then modified async.send to actually make use of the pool that it is passed.
requests/async.py