Skip to content

Commit 67c47ce

Browse files
[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 1147810) Co-authored-by: sobolevn <mail@sobolevn.me>
1 parent a02beab commit 67c47ce

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
@@ -14,7 +14,7 @@
1414
try:
1515
import _testinternalcapi
1616
except ImportError:
17-
_testinternalcapi = NULL
17+
_testinternalcapi = None
1818

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

0 commit comments

Comments
 (0)