diff options
author | Christian Heimes <christian@python.org> | 2022-04-25 10:58:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 10:58:25 (GMT) |
commit | 9ff2f12c876289a7192fd1672ed08a1876a51e17 (patch) | |
tree | ec8bfa5a56cc32a00ba0295e84319f0bf3f1e3a1 | |
parent | f7641a2ffec243e5f600028a84debe9028a9ee44 (diff) | |
download | cpython-9ff2f12c876289a7192fd1672ed08a1876a51e17.zip cpython-9ff2f12c876289a7192fd1672ed08a1876a51e17.tar.gz cpython-9ff2f12c876289a7192fd1672ed08a1876a51e17.tar.bz2 |
gh-84461: Include _emscripten_info in pythoninfo output (GH-91907)
-rw-r--r-- | Lib/test/pythoninfo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index 39301e6..28549a6 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -79,6 +79,7 @@ def call_func(info_add, name, mod, func_name, *, formatter=None): def collect_sys(info_add): attributes = ( + '_emscripten_info', '_framework', 'abiflags', 'api_version', |