bpo-45019: Silence a warning in test_ctypes. (gh-28362)

This was missed in PR gh-28319.

https://bugs.python.org/issue45019
This commit is contained in:
Eric Snow 2021-09-15 13:33:05 -06:00 committed by GitHub
parent 51056b40e7
commit 4b30aaa0c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 struct_frozen(Structure):
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")