summaryrefslogtreecommitdiffstats
path: root/Lib/test/_test_embed_set_config.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-06 00:37:28 (GMT)
committerGitHub <noreply@github.com>2023-10-06 00:37:28 (GMT)
commite0c44377935de3491b2cbe1e5f87f8b336fdc922 (patch)
tree63a5ef10c9528b0591833f443e7fe51f7c2675dd /Lib/test/_test_embed_set_config.py
parent3c0f65ebce10d5327e07245f7cf2beb96b18c970 (diff)
downloadcpython-e0c44377935de3491b2cbe1e5f87f8b336fdc922.zip
cpython-e0c44377935de3491b2cbe1e5f87f8b336fdc922.tar.gz
cpython-e0c44377935de3491b2cbe1e5f87f8b336fdc922.tar.bz2
Add support.MS_WINDOWS constant (#110446)
Diffstat (limited to 'Lib/test/_test_embed_set_config.py')
-rw-r--r--Lib/test/_test_embed_set_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/_test_embed_set_config.py b/Lib/test/_test_embed_set_config.py
index 0c016b5..a2ddd13 100644
--- a/Lib/test/_test_embed_set_config.py
+++ b/Lib/test/_test_embed_set_config.py
@@ -9,9 +9,9 @@ import _testinternalcapi
import os
import sys
import unittest
+from test.support import MS_WINDOWS
-MS_WINDOWS = (os.name == 'nt')
MAX_HASH_SEED = 4294967295
class SetConfigTests(unittest.TestCase):