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 pkt
Recipients pkt
Date 2014-09-29.20:59:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412024342.18.0.174047226004.issue22517@psf.upfronthosting.co.za>
In-reply-to
Content
# static void
# bufferedrwpair_dealloc(rwpair *self)
# {
#     _PyObject_GC_UNTRACK(self);
#     Py_CLEAR(self->reader);
#     Py_CLEAR(self->writer);
#     Py_CLEAR(self->dict);
#     Py_TYPE(self)->tp_free((PyObject *) self);
# }
# 
# Weakrefs to this object contain stale pointer after BufferedRWPair is freed.
History
Date User Action Args
2014-09-29 20:59:02pktsetrecipients: + pkt
2014-09-29 20:59:02pktsetmessageid: <1412024342.18.0.174047226004.issue22517@psf.upfronthosting.co.za>
2014-09-29 20:59:02pktlinkissue22517 messages
2014-09-29 20:59:02pktcreate