We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_capi.test_dict.py
_testcapi
_testlimitedcapi
1 parent f7aafbb commit 801f35dCopy full SHA for 801f35d
Lib/test/test_capi/test_dict.py
@@ -2,8 +2,11 @@
2
from collections import OrderedDict, UserDict
3
from types import MappingProxyType
4
from test import support
5
-import _testcapi
6
-import _testlimitedcapi
+from test.support import import_helper
+
7
8
+_testcapi = import_helper.import_module("_testcapi")
9
+_testlimitedcapi = import_helper.import_module("_testlimitedcapi")
10
11
12
NULL = None
0 commit comments