From: Eric Snow Date: Wed, 15 Sep 2021 19:33:05 +0000 (-0600) Subject: bpo-45019: Silence a warning in test_ctypes. (gh-28362) X-Git-Tag: v3.11.0a1~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b30aaa0c9dc4da956199dbd48af9c06089cb271;p=thirdparty%2FPython%2Fcpython.git bpo-45019: Silence a warning in test_ctypes. (gh-28362) This was missed in PR gh-28319. https://bugs.python.org/issue45019 --- diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py index 03bc9bba3175..4f525cde69e8 100644 --- a/Lib/ctypes/test/test_values.py +++ b/Lib/ctypes/test/test_values.py @@ -2,7 +2,7 @@ A testcase which accesses *values* in a dll. """ -import imp +import _imp import importlib.util import unittest import sys @@ -81,7 +81,7 @@ class PythonValuesTestCase(unittest.TestCase): self.assertIsNone(spec.submodule_search_locations) with import_helper.frozen_modules(): - expected = imp._frozen_module_names() + expected = _imp._frozen_module_names() self.maxDiff = None self.assertEqual(modules, expected, "PyImport_FrozenModules example " "in Doc/library/ctypes.rst may be out of date")