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 Ramchandra Apte
Recipients Ramchandra Apte, christian.heimes, mmokrejs
Date 2013-08-25.11:27:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377430067.84.0.643263527166.issue17234@psf.upfronthosting.co.za>
In-reply-to
Content
> Here is one stacktrace I just got with the faulthandler installed. It does not show in the trace any 3rd-party module so can I conclude it is a core python bug? Just recompiling with "-ggdb" so eventually will have better stacktraces.

I'm a C noob but I think one can't conclude that it is a core python bug as the ref count could have been messed with, then sometime later the error may occur and GDB's stacktrace will show the latter.
Or in pseudo-code:

mess_with_ref_count() # In 3rd party code
non_3rd_party_code() #the error may occur here, after the refcount was messed with, and gdb will show this function in the stack trace

BTW, run ./configure with the --with-pydebug option, that makes Python perform extra checks on refcounts and other things [0]

^0 http://docs.python.org/devguide/setup.html#compiling-for-debugging
History
Date User Action Args
2013-08-25 11:27:47Ramchandra Aptesetrecipients: + Ramchandra Apte, mmokrejs, christian.heimes
2013-08-25 11:27:47Ramchandra Aptesetmessageid: <1377430067.84.0.643263527166.issue17234@psf.upfronthosting.co.za>
2013-08-25 11:27:47Ramchandra Aptelinkissue17234 messages
2013-08-25 11:27:47Ramchandra Aptecreate