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 geofft
Recipients geofft
Date 2021-07-27.21:23:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627421017.82.0.756095200608.issue44751@roundup.psfhosted.org>
In-reply-to
Content
In #32635, it was discovered that _cryptmodule.c was missing a dependency on crypt.h, which caused it to segfault when it was missing the proper prototype for crypt. This was fixed by adding an #include <crypt.h> to Python.h.

This include doesn't need to be in the public header; it only needs to be in _cryptmodule.c. Removing it from the public header is helpful for packagers, because it means that the libpython-dev (or whatever) package doesn't need a dependency on libcrypt-dev, only on the libcrypt runtime library.
History
Date User Action Args
2021-07-27 21:23:37geofftsetrecipients: + geofft
2021-07-27 21:23:37geofftsetmessageid: <1627421017.82.0.756095200608.issue44751@roundup.psfhosted.org>
2021-07-27 21:23:37geofftlinkissue44751 messages
2021-07-27 21:23:37geofftcreate