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 Roman Yurchak, christian.heimes, paul.moore, steve.dower, tim.golden, zach.ware
Date 2021-11-26.19:45:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1637955913.67.0.382369250036.issue45898@roundup.psfhosted.org>
In-reply-to
Content
This is because we use libffi as a DLL and you can't statically reference dynamically loaded addresses on Windows.

You could change that format table to be initialised on first use, or resolve the FFI type lazily. Or change ctypes to statically link libffi (including updating our FFI build, which IIRC is the one that requires Cygwin, to generate static libraries instead of dynamic) - we can't backport this change, either, because it affects the layout on disk.
History
Date User Action Args
2021-11-26 19:45:13steve.dowersetrecipients: + steve.dower, paul.moore, christian.heimes, tim.golden, zach.ware, Roman Yurchak
2021-11-26 19:45:13steve.dowersetmessageid: <1637955913.67.0.382369250036.issue45898@roundup.psfhosted.org>
2021-11-26 19:45:13steve.dowerlinkissue45898 messages
2021-11-26 19:45:13steve.dowercreate