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 eric.snow, lukasz.langa, ncoghlan, vstinner
Date 2018-11-22.14:35:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542897320.85.0.788709270274.issue35266@psf.upfronthosting.co.za>
In-reply-to
Content
Hum, my split is incomplete. From a high level point of view, the initialization should be done in these steps:

1) select memory allocator, config made of C char* (bytes) and int types
2) select encodings, add wchar_t* (Unicode) strings to the config
3) compute the "path configuration" (used to initialize importlib and sys.path)
4) apply the config to Python

Step (3) should be optional. Currently, the path configuration can be set in _PyCoreConfig to avoid the need "calculate" it (operation which access the filesystem).

Technically, we may have to use wchar_t* in (1), since Windows uses wmain() which gets argv as wchar_t** (and environment variables as wchar_t* as well).
History
Date User Action Args
2018-11-22 14:35:20vstinnersetrecipients: + vstinner, ncoghlan, lukasz.langa, eric.snow
2018-11-22 14:35:20vstinnersetmessageid: <1542897320.85.0.788709270274.issue35266@psf.upfronthosting.co.za>
2018-11-22 14:35:20vstinnerlinkissue35266 messages
2018-11-22 14:35:20vstinnercreate