The async.send method wasn't really doing anything useful. It was just calling the...
authorBen <mastahyeti@gmail.com>
Tue, 17 Jan 2012 21:17:38 +0000 (15:17 -0600)
committerBen <mastahyeti@gmail.com>
Tue, 17 Jan 2012 21:17:38 +0000 (15:17 -0600)
commitc658b363e38c928a2f7be8e09eece8e11f863b62
treedbe90e378a74c6460f474137b51d139cedc8b0e6
parentdf0dc2b67a5fcf82f6688af3f26e19c9379373f7
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