]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)
authorVictor Stinner <vstinner@redhat.com>
Thu, 16 May 2019 15:02:56 +0000 (17:02 +0200)
committerGitHub <noreply@github.com>
Thu, 16 May 2019 15:02:56 +0000 (17:02 +0200)
commitae239f6b0626e926613a4a1dbafa323bd41fec32
treec811687161a90a5a03dc29b83774b5f9688579d7
parent68b34a720485f399e8699235b8f4e08f227dd43b
bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)

* _PyCoreConfig_Read() doesn't parse nor update argv
  if parse_argv is 0.
* Move path configuration fields in _PyCoreConfig.
* Add an unit test for parse_argv=0.
* Remove unused "done": label in _Py_RunMain().
Include/cpython/coreconfig.h
Lib/test/test_embed.py
Modules/main.c
Programs/_testembed.c
Python/coreconfig.c