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 vstinner
Recipients vstinner
Date 2018-10-15.11:26:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539602788.05.0.788709270274.issue34989@psf.upfronthosting.co.za>
In-reply-to
Content
The bug can be reproduced using this change:


diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py
index bf4047419e..f973d4d4bd 100755
--- a/Tools/gdb/libpython.py
+++ b/Tools/gdb/libpython.py
@@ -402,6 +402,7 @@ class PyObjectPtr(object):
         the pointer accordingly.
         '''
         try:
+            raise RuntimeError
             p = PyObjectPtr(gdbval)
             cls = cls.subclass_from_type(p.type())
             return cls(gdbval, cast_to=cls.get_gdb_type())


(Don't forget to run "make" again to copy Tools/gdb/libpython.py to python-gdb.py.)
History
Date User Action Args
2018-10-15 11:26:28vstinnersetrecipients: + vstinner
2018-10-15 11:26:28vstinnersetmessageid: <1539602788.05.0.788709270274.issue34989@psf.upfronthosting.co.za>
2018-10-15 11:26:28vstinnerlinkissue34989 messages
2018-10-15 11:26:28vstinnercreate