From: Victor Stinner Date: Mon, 2 Jun 2014 19:29:07 +0000 (+0200) Subject: Issue #21639: Fix name of _testcapi test functions X-Git-Tag: v3.4.2rc1~458 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=797bcb51d08991ac8a4e56d099083a5acfc3667c;p=python Issue #21639: Fix name of _testcapi test functions --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index db2376d036..538322db56 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -3104,9 +3104,9 @@ static PyMethodDef TestMethods[] = { {"pytime_object_to_timeval", test_pytime_object_to_timeval, METH_VARARGS}, {"pytime_object_to_timespec", test_pytime_object_to_timespec, METH_VARARGS}, {"with_tp_del", with_tp_del, METH_VARARGS}, - {"test_pymem", - (PyCFunction)test_pymem_alloc0, METH_NOARGS}, {"test_pymem_alloc0", + (PyCFunction)test_pymem_alloc0, METH_NOARGS}, + {"test_pymem_setrawallocators", (PyCFunction)test_pymem_setrawallocators, METH_NOARGS}, {"test_pymem_setallocators", (PyCFunction)test_pymem_setallocators, METH_NOARGS},