From 67c47ce163e9d086ce4770e8bda638aebe530a2b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 5 May 2026 13:47:46 +0200 Subject: [PATCH] [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 114781040c8ab033a164dbdefca71b69ba7fe2ed) Co-authored-by: sobolevn --- 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 703d228f92e..559ca932595 100644 --- a/Lib/test/test_capi/test_getargs.py +++ b/Lib/test/test_capi/test_getargs.py @@ -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.