https://github.com/python/cpython/commit/67c47ce163e9d086ce4770e8bda638aebe530a2b
commit: 67c47ce163e9d086ce4770e8bda638aebe530a2b
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: sobolevn <[email protected]>
date: 2026-05-05T14:47:46+03:00
summary:

[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 <[email protected]>

files:
M Lib/test/test_capi/test_getargs.py

diff --git a/Lib/test/test_capi/test_getargs.py 
b/Lib/test/test_capi/test_getargs.py
index 703d228f92e713..559ca9325955b0 100644
--- a/Lib/test/test_capi/test_getargs.py
+++ b/Lib/test/test_capi/test_getargs.py
@@ -14,7 +14,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.

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to