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 martin.panter
Recipients Honza Skýpala, martin.panter, yan12125
Date 2018-12-02.11:15:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543749307.75.0.788709270274.issue29541@psf.upfronthosting.co.za>
In-reply-to
Content
The missing “crypt” symbol is probably this function: <http://pubs.opengroup.org/onlinepubs/9699919799/functions/crypt.html>. It is defined by the OS or a separate library, not by Python. You may need to link the “_crypt” Python module to the library that contains the function. E.g. in Glibc <http://man7.org/linux/man-pages/man3/crypt.3.html> you are meant to “link with -lcrypt”, although I suspect Python’s “setup.py” normally does that automatically.
History
Date User Action Args
2018-12-02 11:15:07martin.pantersetrecipients: + martin.panter, yan12125, Honza Skýpala
2018-12-02 11:15:07martin.pantersetmessageid: <1543749307.75.0.788709270274.issue29541@psf.upfronthosting.co.za>
2018-12-02 11:15:07martin.panterlinkissue29541 messages
2018-12-02 11:15:07martin.pantercreate