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 Daniel Moore
Recipients Daniel Moore, paul.moore, steve.dower, tim.golden, zach.ware
Date 2017-05-07.19:01:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494183710.88.0.708414094068.issue30301@psf.upfronthosting.co.za>
In-reply-to
Content
I originally posted this as a question on StackOverflow thinking I was doing something wrong:

http://stackoverflow.com/questions/43834494/python-3-6-attributeerror-simplequeue-object-has-no-attribute-poll/43835368#43835368

But I think I found the solution and answered my own question. I'm pretty sure you need to set:

self._poll = self._reader.poll

in the __setstate__ method in the SimpleQueue class of queues.py from the multiprocessing library. Otherwise, I'd love to know an alternative solution.

Thanks!
History
Date User Action Args
2017-05-07 19:01:51Daniel Mooresetrecipients: + Daniel Moore, paul.moore, tim.golden, zach.ware, steve.dower
2017-05-07 19:01:50Daniel Mooresetmessageid: <1494183710.88.0.708414094068.issue30301@psf.upfronthosting.co.za>
2017-05-07 19:01:50Daniel Moorelinkissue30301 messages
2017-05-07 19:01:50Daniel Moorecreate