diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-06 00:37:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-06 00:37:28 (GMT) |
commit | e0c44377935de3491b2cbe1e5f87f8b336fdc922 (patch) | |
tree | 63a5ef10c9528b0591833f443e7fe51f7c2675dd /Lib/test/pythoninfo.py | |
parent | 3c0f65ebce10d5327e07245f7cf2beb96b18c970 (diff) | |
download | cpython-e0c44377935de3491b2cbe1e5f87f8b336fdc922.zip cpython-e0c44377935de3491b2cbe1e5f87f8b336fdc922.tar.gz cpython-e0c44377935de3491b2cbe1e5f87f8b336fdc922.tar.bz2 |
Add support.MS_WINDOWS constant (#110446)
Diffstat (limited to 'Lib/test/pythoninfo.py')
-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 58d906f..4f3ebb1 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -730,6 +730,7 @@ def collect_support(info_add): return attributes = ( + 'MS_WINDOWS', 'has_fork_support', 'has_socket_support', 'has_strftime_extensions', |