diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-01 00:30:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-01 00:30:12 (GMT) |
commit | 5f38b8407b071acd96da2c8cde411d0e26967735 (patch) | |
tree | cac8a6046fcef2a6b0f1efb56714c4750c90bdb6 /Lib | |
parent | 463b82a3efe8a6a9f3924a5b37482e961dffe3b8 (diff) | |
download | cpython-5f38b8407b071acd96da2c8cde411d0e26967735.zip cpython-5f38b8407b071acd96da2c8cde411d0e26967735.tar.gz cpython-5f38b8407b071acd96da2c8cde411d0e26967735.tar.bz2 |
bpo-36763: Add _PyCoreConfig_SetArgv() (GH-13030)
* Add 2 new config methods:
* _PyCoreConfig_SetArgv()
* _PyCoreConfig_SetWideArgv()
* Add also an internal _PyCoreConfig_SetPyArgv() method.
* Remove 'args' parameter from _PyCoreConfig_Read().
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/pythoninfo.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index 5809566..e9edf67 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -602,8 +602,7 @@ def collect_gdbm(info_add): def collect_get_config(info_add): - # Dump global configuration variables, _PyCoreConfig - # and _PyMainInterpreterConfig + # Get global configuration variables, _PyPreConfig and _PyCoreConfig try: from _testinternalcapi import get_configs except ImportError: |