summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-06-02 21:29:28 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-06-02 21:29:28 +0200
commit38d65dff7c7f929fbefd83a887ff8997d96e2505 (patch)
treeeca25897df0d9384d2539314fc5a87dd59c1e14b /Modules
parent07bcf14b602863c3955e66a7874e750dd67a91df (diff)
parent797bcb51d08991ac8a4e56d099083a5acfc3667c (diff)
downloadcpython-git-38d65dff7c7f929fbefd83a887ff8997d96e2505.tar.gz
(Merge 3.4) Issue #21639: Fix name of _testcapi test functions
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_testcapimodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index a75500426c..c83a4c8ce5 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -3167,9 +3167,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},