This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author richard.kiss
Recipients richard.kiss
Date 2014-04-13.03:39:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397360383.2.0.717693228868.issue21209@psf.upfronthosting.co.za>
In-reply-to
Content
For a reason that I don't understand, this patch to asyncio fixes the problem:


--- a/asyncio/tasks.py	Mon Mar 31 11:31:16 2014 -0700
+++ b/asyncio/tasks.py	Sat Apr 12 20:37:02 2014 -0700
@@ -49,7 +49,8 @@
     def __next__(self):
         return next(self.gen)
 
-    def send(self, value):
+    def send(self, value, *args):
         return self.gen.send(value)
 
     def throw(self, exc):


Maybe the problem really is somewhere else, but this works.
History
Date User Action Args
2014-04-13 03:39:43richard.kisssetrecipients: + richard.kiss
2014-04-13 03:39:43richard.kisssetmessageid: <1397360383.2.0.717693228868.issue21209@psf.upfronthosting.co.za>
2014-04-13 03:39:43richard.kisslinkissue21209 messages
2014-04-13 03:39:42richard.kisscreate