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 corona10, docs@python, joukewitteveen, vstinner
Date 2021-05-13.00:31:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
commit 6cd0446ef72c6676b292d7f54b1ddb8ae5e1fb8d
Author: Victor Stinner <[email protected]>
Date:   Wed May 12 23:59:25 2021 +0200

    bpo-44113: Deprecate old functions to config Python init (GH-26060)
    
    Deprecate the following functions to configure the Python
    initialization:
    
    * PySys_AddWarnOption()
    * PySys_AddWarnOptionUnicode()
    * PySys_AddXOption()
    * PySys_HasWarnOptions()
    * Py_SetPath()
    * Py_SetProgramName()
    * Py_SetPythonHome()
    * Py_SetStandardStreamEncoding()
    * _Py_SetProgramFullPath()
    
    Use the new PyConfig API of the Python Initialization Configuration
    instead (PEP 587).

commit a0ccc404ca649c2a1635511a09df2454e47b4d66
Author: Dong-hee Na <[email protected]>
Date:   Thu May 13 08:22:18 2021 +0900

    bpo-44113: Update __xxtestfuzz not to use Py_SetProgramName (GH-26083)

commit ec7c09b9bc9a8f333a0295b41ea88986c320448c
Author: Victor Stinner <[email protected]>
Date:   Thu May 13 02:27:56 2021 +0200

    bpo-44113: Fix compiler warning in PySys_AddWarnOption() (GH-26084)
    
    Ignore Py_DEPRECATED() warning on purpose.
History
Date User Action Args
2021-05-13 00:31:40vstinnersetrecipients: + vstinner, docs@python, corona10, joukewitteveen
2021-05-13 00:31:40vstinnersetmessageid: <[email protected]>
2021-05-13 00:31:40vstinnerlinkissue44113 messages
2021-05-13 00:31:40vstinnercreate