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 docs@python, eric.snow, ncoghlan, ned.deily, vstinner
Date 2018-06-21.13:35:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529588114.65.0.56676864532.issue33932@psf.upfronthosting.co.za>
In-reply-to
Content
The behaviour changed has been introduced by bpo-22257:

commit 1abcf6700b4da6207fe859de40c6c1bada6b4fec
Author: Eric Snow <ericsnowcurrently@gmail.com>
Date:   Tue May 23 21:46:51 2017 -0700

    bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)
    
    (patch by Nick Coghlan)

Simplified change:

-    if (initialized)
-        return;
-    initialized = 1;

+    if (_Py_Initialized) {
+        Py_FatalError("Py_InitializeCore: main interpreter already initialized");
+    }
History
Date User Action Args
2018-06-21 13:35:14vstinnersetrecipients: + vstinner, ncoghlan, ned.deily, docs@python, eric.snow
2018-06-21 13:35:14vstinnersetmessageid: <1529588114.65.0.56676864532.issue33932@psf.upfronthosting.co.za>
2018-06-21 13:35:14vstinnerlinkissue33932 messages
2018-06-21 13:35:14vstinnercreate