[3.13] gh-149403: Fix NameError in Lib/test/test_capi/test_getargs.py (GH-149404) (#149407)

gh-149403: Fix `NameError` in `Lib/test/test_capi/test_getargs.py` (GH-149404)
(cherry picked from commit 114781040c)

Co-authored-by: sobolevn <mail@sobolevn.me>
This commit is contained in:
Miss Islington (bot)
2026-05-05 13:47:46 +02:00
committed by GitHub
parent a02beabe2d
commit 67c47ce163
+1 -1
View File
@@ -14,7 +14,7 @@ from _testcapi import getargs_keywords, getargs_keyword_only
try:
import _testinternalcapi
except ImportError:
_testinternalcapi = NULL
_testinternalcapi = None
# > How about the following counterproposal. This also changes some of
# > the other format codes to be a little more regular.