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 davin
Recipients berker.peksag, davin, sbt, wojtekwalczak
Date 2016-09-08.17:17:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473355020.94.0.0259248212511.issue21201@psf.upfronthosting.co.za>
In-reply-to
Content
Looks good to me as well.  I'll go ahead with applying the patch.

Berker:  I'm not sure it's worth adding something like `util.info("Serialization failure on: %r", msg)`.  If serialization failed for some reason other than MemoryError, we will be communicating the output of format_exc() back to the client.  If serialization failed due to a MemoryError (which has tripped up plenty of people) then our util.info may similarly fail.



Note that with the patch recently applied to issue6766, under 3.6 the second example no longer triggers an exception.  That second example can even continue:
    >>> ns_proxy.my_event_proxy.set()
    >>> ns_proxy.my_event_proxy.is_set()
    True
    >>> evt_proxy.is_set()
    True
    >>> evt_proxy.clear()
    >>> ns_proxy.my_event_proxy.is_set()
    False
History
Date User Action Args
2016-09-08 17:17:00davinsetrecipients: + davin, wojtekwalczak, sbt, berker.peksag
2016-09-08 17:17:00davinsetmessageid: <1473355020.94.0.0259248212511.issue21201@psf.upfronthosting.co.za>
2016-09-08 17:17:00davinlinkissue21201 messages
2016-09-08 17:17:00davincreate