From 4b30aaa0c9dc4da956199dbd48af9c06089cb271 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Wed, 15 Sep 2021 13:33:05 -0600 Subject: bpo-45019: Silence a warning in test_ctypes. (gh-28362) This was missed in PR gh-28319. https://bugs.python.org/issue45019 --- Lib/ctypes/test/test_values.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/ctypes/test/test_values.py b/Lib/ctypes/test/test_values.py index 03bc9bb..4f525cd 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") -- cgit v0.12