From 04cc4a07d81e70ac60890f6cf1d8084b3d80c0ca Mon Sep 17 00:00:00 2001 From: sobolevn Date: Tue, 5 May 2026 12:30:13 +0300 Subject: [PATCH] gh-149403: Fix `NameError` in `Lib/test/test_capi/test_getargs.py` --- Lib/test/test_capi/test_getargs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_capi/test_getargs.py b/Lib/test/test_capi/test_getargs.py index 0b2473bac2be11..bbc09e50eb8e45 100644 --- a/Lib/test/test_capi/test_getargs.py +++ b/Lib/test/test_capi/test_getargs.py @@ -13,7 +13,7 @@ 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.