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 christian.heimes, corona10, gvanrossum, kumaraditya, miss-islington, sobolevn, vstinner
Date 2022-02-26.23:21:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645917662.95.0.13226435189.issue46430@roundup.psfhosted.org>
In-reply-to
Content
> The other functions you are calling *do* return errors. You should not ignore those. If any errors are reported the caller can decide what to do (e.g. call Py_FatalError().

PEP 587 introduced PyStatus to Python startup code which let the Py_Initialize() caller to decide how to handle errors ;-) For example, you can open a graphical popup rather than killing the process with SIGABRT (Py_FatalError() behavior) which might be more user friendly :-D Or just log the error.
History
Date User Action Args
2022-02-26 23:21:03vstinnersetrecipients: + vstinner, gvanrossum, christian.heimes, corona10, miss-islington, sobolevn, kumaraditya
2022-02-26 23:21:02vstinnersetmessageid: <1645917662.95.0.13226435189.issue46430@roundup.psfhosted.org>
2022-02-26 23:21:02vstinnerlinkissue46430 messages
2022-02-26 23:21:02vstinnercreate