summaryrefslogtreecommitdiff
path: root/Modules/_testcapimodule.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-06-02 21:29:07 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-06-02 21:29:07 +0200
commitd74b03d40098e5d1f7d027c97faf381ffca8ed40 (patch)
tree9bd3d0fd82965a10133cc3f93aa5f23c352291e0 /Modules/_testcapimodule.c
parenta5d7f2b332b5c1aea43b97a59b2ef8ffb8819f61 (diff)
downloadcpython-d74b03d40098e5d1f7d027c97faf381ffca8ed40.tar.gz
Issue #21639: Fix name of _testcapi test functions
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r--Modules/_testcapimodule.c4
1 files changed, 2 insertions, 2 deletions
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},