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

Skip to content

Commit 797bcb5

Browse files
committed
Issue #21639: Fix name of _testcapi test functions
1 parent fc14ad9 commit 797bcb5

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
@@ -3104,9 +3104,9 @@ static PyMethodDef TestMethods[] = {
31043104
{"pytime_object_to_timeval", test_pytime_object_to_timeval, METH_VARARGS},
31053105
{"pytime_object_to_timespec", test_pytime_object_to_timespec, METH_VARARGS},
31063106
{"with_tp_del", with_tp_del, METH_VARARGS},
3107-
{"test_pymem",
3108-
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
31093107
{"test_pymem_alloc0",
3108+
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
3109+
{"test_pymem_setrawallocators",
31103110
(PyCFunction)test_pymem_setrawallocators, METH_NOARGS},
31113111
{"test_pymem_setallocators",
31123112
(PyCFunction)test_pymem_setallocators, METH_NOARGS},

0 commit comments

Comments
 (0)