]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-149403: Fix `NameError` in `Lib/test/test_capi/test_getargs.py` (#149404)
authorsobolevn <mail@sobolevn.me>
Tue, 5 May 2026 09:58:32 +0000 (12:58 +0300)
committerGitHub <noreply@github.com>
Tue, 5 May 2026 09:58:32 +0000 (09:58 +0000)
Lib/test/test_capi/test_getargs.py

index 0b2473bac2be1137811501972d37715060fa9248..bbc09e50eb8e4500d0cb2298cb06116f2ab34dda 100644 (file)
@@ -13,7 +13,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.