[Python-checkins] cpython (merge 3.4 -> default): (Merge 3.4) Issue #21639: Fix name of _testcapi test functions

victor.stinner python-checkins at python.org
Mon Jun 2 21:41:02 CEST 2014


http://hg.python.org/cpython/rev/7083634065c9
changeset:   90977:7083634065c9
parent:      90975:3a923156ca05
parent:      90976:d87ede8da3c8
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Jun 02 21:29:28 2014 +0200
summary:
  (Merge 3.4) Issue #21639: Fix name of _testcapi test functions

files:
  Modules/_testcapimodule.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -3167,9 +3167,9 @@
     {"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",
+    {"test_pymem_alloc0",
      (PyCFunction)test_pymem_alloc0, METH_NOARGS},
-    {"test_pymem_alloc0",
+    {"test_pymem_setrawallocators",
      (PyCFunction)test_pymem_setrawallocators, METH_NOARGS},
     {"test_pymem_setallocators",
      (PyCFunction)test_pymem_setallocators, METH_NOARGS},

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list