From: sobolevn Date: Tue, 5 May 2026 09:58:32 +0000 (+0300) Subject: gh-149403: Fix `NameError` in `Lib/test/test_capi/test_getargs.py` (#149404) X-Git-Tag: v3.15.0b1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=114781040c8ab033a164dbdefca71b69ba7fe2ed;p=thirdparty%2FPython%2Fcpython.git gh-149403: Fix `NameError` in `Lib/test/test_capi/test_getargs.py` (#149404) --- diff --git a/Lib/test/test_capi/test_getargs.py b/Lib/test/test_capi/test_getargs.py index 0b2473bac2be..bbc09e50eb8e 100644 --- a/Lib/test/test_capi/test_getargs.py +++ b/Lib/test/test_capi/test_getargs.py @@ -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.