]> granicus.if.org Git - python/commitdiff
Issue #21639: Fix name of _testcapi test functions
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 2 Jun 2014 19:29:07 +0000 (21:29 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 2 Jun 2014 19:29:07 +0000 (21:29 +0200)
Modules/_testcapimodule.c

index db2376d0369d58e885214a1688dd0544b3311602..538322db5614a41381aa97f4fd8ddf3e6f7b97c6 100644 (file)
@@ -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},