From: Victor Stinner Date: Thu, 12 Dec 2013 22:06:07 +0000 (+0100) Subject: Issue #19751: Fix typo in configuration option X-Git-Tag: v3.4.0b2~248 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b6d4b56d3336c051531fb4716ab23d5721ad1f3;p=python Issue #19751: Fix typo in configuration option --- 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})