[3.12] gh-115142: Skip test_capi.test_dict.py if _testcapi is not available (GH-117588) (GH-117718)

(cherry picked from commit dfcae4379f)
This commit is contained in:
Kirill Podoprigora 2024-04-11 17:18:28 +03:00 committed by GitHub
parent 5b681d60a6
commit 8c1c71ee38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,9 @@ from collections import OrderedDict, UserDict
from types import MappingProxyType from types import MappingProxyType
from test import support from test import support
from test.support import import_helper from test.support import import_helper
import _testcapi
_testcapi = import_helper.import_module("_testcapi")
NULL = None NULL = None