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-06-16.14:27:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623853624.79.0.301868958873.issue44434@roundup.psfhosted.org>
In-reply-to
Content
See also bpo-18748 "io.IOBase destructor silence I/O error on close() by default" which was caused by a bug in an application, the application closed the libgcc_s file descriptor by mistake. It closed the same file decriptor twice, whereas the FD was reused by dlopen() in the meanwhile. But the result was the same, the process aborted with this error message:

"libgcc_s.so.1 must be installed for pthread_cancel to work"
History
Date User Action Args
2021-06-16 14:27:04vstinnersetrecipients: + vstinner
2021-06-16 14:27:04vstinnersetmessageid: <1623853624.79.0.301868958873.issue44434@roundup.psfhosted.org>
2021-06-16 14:27:04vstinnerlinkissue44434 messages
2021-06-16 14:27:04vstinnercreate