[issue36471] PEP 432, PEP 587: Add _Py_RunMain()

2019-05-10 Thread STINNER Victor
STINNER Victor added the comment: The PEP 587 will decide if this function is made public or not. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue36471] PEP 432, PEP 587: Add _Py_RunMain()

2019-03-29 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2f54908afc5665937d763510b4430f10cf764641 by Victor Stinner in branch 'master': bpo-36471: Add _Py_RunMain() (GH-12618) https://github.com/python/cpython/commit/2f54908afc5665937d763510b4430f10cf764641 -- __

[issue36471] PEP 432, PEP 587: Add _Py_RunMain()

2019-03-29 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +12553 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue36471] PEP 432, PEP 587: Add _Py_RunMain()

2019-03-29 Thread STINNER Victor
STINNER Victor added the comment: I'm working on a PR to implement it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36471] PEP 432, PEP 587: Add _Py_RunMain()

2019-03-29 Thread STINNER Victor
New submission from STINNER Victor : The PEP 587 adds new functions taking command line arguments: Py_PreInitializeFromArgs(config, argc, argv) Py_PreInitializeFromWideArgs(config, argc, argv) Py_InitializeFromArgs(config, argc, argv) Py_InitializeFromWideArgs(config, argc, argv) I propose to