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 2015-05-01.13:56:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430488567.85.0.132864592859.issue24091@psf.upfronthosting.co.za>
In-reply-to
Content
# 1055        for (i = 0; i < seqlen; i++) {
# (gdb) n
# 1056            PyObject* element = PySequence_Fast_GET_ITEM(seq, i);
# (gdb) n
# 1057            if (!PyObject_IsInstance(element, (PyObject *)&Element_Type)) {
# (gdb) print *element
# $19 = {_ob_next = 0x4060e6fc, _ob_prev = 0x4056cd8c, ob_refcnt = 1, ob_type = 0x406de3e4}
# (gdb) n
# 1066            if (element_add_subelement(self, element) < 0) {
# (gdb) print *element
# $20 = {_ob_next = 0xdbdbdbdb, _ob_prev = 0xdbdbdbdb, ob_refcnt = -606348325, ob_type = 0xdbdbdbdb}
# 
# Fatal Python error: /home/p/Python-3.4.1/Modules/_elementtree.c:267 object at 0x4056c4cc has negative ref count -606348326
# 
# "element" is removed in __getattribute__ method.
History
Date User Action Args
2015-05-01 13:56:07pktsetrecipients: + pkt
2015-05-01 13:56:07pktsetmessageid: <1430488567.85.0.132864592859.issue24091@psf.upfronthosting.co.za>
2015-05-01 13:56:07pktlinkissue24091 messages
2015-05-01 13:56:07pktcreate