Skip to content

Commit 37803c4

Browse files
[3.14] gh-149403: Fix NameError in Lib/test/test_capi/test_getargs.py (GH-149404) (#149406)
gh-149403: Fix `NameError` in `Lib/test/test_capi/test_getargs.py` (GH-149404) (cherry picked from commit 1147810) Co-authored-by: sobolevn <mail@sobolevn.me>
1 parent 3f8c485 commit 37803c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_capi/test_getargs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
try:
1414
import _testinternalcapi
1515
except ImportError:
16-
_testinternalcapi = NULL
16+
_testinternalcapi = None
1717

1818
# > How about the following counterproposal. This also changes some of
1919
# > the other format codes to be a little more regular.

0 commit comments

Comments
 (0)