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 2021-01-13.11:23:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610536989.12.0.810138653715.issue42923@roundup.psfhosted.org>
In-reply-to
Content
Example using PR 24207, the new part the "Extension modules:" list at the end:
---------------
$ ./python -X faulthandler
Python 3.10.0a4+ (heads/master-dirty:2396614b89, Jan 13 2021, 12:09:15) 
>>> import ctypes
>>> ctypes.string_at(0)
Fatal Python error: Segmentation fault

Current thread 0x00007f0aabd09740 (most recent call first):
  File "/home/vstinner/python/master/Lib/ctypes/__init__.py", line 517 in string_at
  File "<stdin>", line 1 in <module>

Extension modules:
 * sys
 * builtins
 * _imp
 * _thread
 * _warnings
 * _weakref
 * _io
 * marshal
 * posix
 * time
 * faulthandler
 * _codecs
 * _signal
 * _abc
 * _stat
 * readline
 * atexit
 * itertools
 * _operator
 * _collections
 * _functools
 * _opcode
 * _sre
 * _locale
 * _ctypes
 * _struct
---------------

Here you can see that the _ctypes module is loaded.
History
Date User Action Args
2021-01-13 11:23:09vstinnersetrecipients: + vstinner
2021-01-13 11:23:09vstinnersetmessageid: <1610536989.12.0.810138653715.issue42923@roundup.psfhosted.org>
2021-01-13 11:23:09vstinnerlinkissue42923 messages
2021-01-13 11:23:08vstinnercreate