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 lukasz.langa, miss-islington, pablogsal, steve.dower, vstinner
Date 2019-09-26.07:48:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1569484120.59.0.558328276105.issue38234@roundup.psfhosted.org>
In-reply-to
Content
Oh, there is a regression:

vstinner@apu$ ./python
Python 3.9.0a0 (heads/master:88feaecd46, Sep 26 2019, 03:26:37) 
[GCC 9.2.1 20190827 (Red Hat 9.2.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import _tkinter
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]

PyInit__tkinter() calls Py_GetProgramName(). But Python initialization no longer copies PyConfig path configuration into _Py_path_info (the global configuration). So Python has to recompute the path configuration which logs 3 warnings.
History
Date User Action Args
2019-09-26 07:48:40vstinnersetrecipients: + vstinner, lukasz.langa, steve.dower, pablogsal, miss-islington
2019-09-26 07:48:40vstinnersetmessageid: <1569484120.59.0.558328276105.issue38234@roundup.psfhosted.org>
2019-09-26 07:48:40vstinnerlinkissue38234 messages
2019-09-26 07:48:39vstinnercreate