diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-06-02 19:29:07 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-06-02 19:29:07 (GMT) |
commit | 797bcb51d08991ac8a4e56d099083a5acfc3667c (patch) | |
tree | d37ae134d35b7238b4383ebdf57fbb580d76b4f8 | |
parent | fc14ad996237839e601d08ac05bd6fe7838a8502 (diff) | |
download | cpython-797bcb51d08991ac8a4e56d099083a5acfc3667c.zip cpython-797bcb51d08991ac8a4e56d099083a5acfc3667c.tar.gz cpython-797bcb51d08991ac8a4e56d099083a5acfc3667c.tar.bz2 |
Issue #21639: Fix name of _testcapi test functions
-rw-r--r-- | Modules/_testcapimodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index db2376d..538322d 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}, |