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 steve.dower
Recipients benjamin.peterson, cgohlke, paul.moore, pyscripter, steve.dower, tim.golden, vstinner, zach.ware
Date 2019-06-17.16:15:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560788100.56.0.471042974026.issue37189@roundup.psfhosted.org>
In-reply-to
Content
I haven't fully tested this, but a suitable test using ctypes might look like:

py = ctypes.PyDLL("", handle=sys.dllhandle)
missing = {name for name in EXPECTED_NAMES if not hasattr(py, name)}
# assert 'missing' is empty
History
Date User Action Args
2019-06-17 16:15:00steve.dowersetrecipients: + steve.dower, paul.moore, vstinner, tim.golden, pyscripter, benjamin.peterson, cgohlke, zach.ware
2019-06-17 16:15:00steve.dowersetmessageid: <1560788100.56.0.471042974026.issue37189@roundup.psfhosted.org>
2019-06-17 16:15:00steve.dowerlinkissue37189 messages
2019-06-17 16:15:00steve.dowercreate