From 4b6d4b56d3336c051531fb4716ab23d5721ad1f3 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 12 Dec 2013 23:06:07 +0100 Subject: [PATCH] Issue #19751: Fix typo in configuration option --- Lib/test/test_sys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index f0c71483ed..2c3fdfb5c1 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -447,7 +447,7 @@ class SysModuleTest(unittest.TestCase): self.assertIsInstance(sys.hash_info.inf, int) self.assertIsInstance(sys.hash_info.nan, int) self.assertIsInstance(sys.hash_info.imag, int) - algo = sysconfig.get_config_var("PY_HASH_ALGORITHM") + algo = sysconfig.get_config_var("Py_HASH_ALGORITHM") if sys.hash_info.algorithm in {"fnv", "siphash24"}: self.assertIn(sys.hash_info.hash_bits, {32, 64}) self.assertIn(sys.hash_info.seed_bits, {32, 64, 128}) -- 2.40.0