Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 38d65df

Browse files
committed
(Merge 3.4) Issue #21639: Fix name of _testcapi test functions
2 parents 07bcf14 + 797bcb5 commit 38d65df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_testcapimodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3167,9 +3167,9 @@ static PyMethodDef TestMethods[] = {
31673167
{"pytime_object_to_timeval", test_pytime_object_to_timeval, METH_VARARGS},
31683168
{"pytime_object_to_timespec", test_pytime_object_to_timespec, METH_VARARGS},
31693169
{"with_tp_del", with_tp_del, METH_VARARGS},
3170-
{"test_pymem",
3171-
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
31723170
{"test_pymem_alloc0",
3171+
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
3172+
{"test_pymem_setrawallocators",
31733173
(PyCFunction)test_pymem_setrawallocators, METH_NOARGS},
31743174
{"test_pymem_setallocators",
31753175
(PyCFunction)test_pymem_setallocators, METH_NOARGS},

0 commit comments

Comments
 (0)