mirror of
https://github.com/python/cpython.git
synced 2025-07-25 20:24:11 +00:00
Issue #21639: Fix name of _testcapi test functions
This commit is contained in:
parent
fc14ad9962
commit
797bcb51d0
1 changed files with 2 additions and 2 deletions
|
@ -3104,9 +3104,9 @@ static PyMethodDef TestMethods[] = {
|
||||||
{"pytime_object_to_timeval", test_pytime_object_to_timeval, METH_VARARGS},
|
{"pytime_object_to_timeval", test_pytime_object_to_timeval, METH_VARARGS},
|
||||||
{"pytime_object_to_timespec", test_pytime_object_to_timespec, METH_VARARGS},
|
{"pytime_object_to_timespec", test_pytime_object_to_timespec, METH_VARARGS},
|
||||||
{"with_tp_del", with_tp_del, METH_VARARGS},
|
{"with_tp_del", with_tp_del, METH_VARARGS},
|
||||||
{"test_pymem",
|
|
||||||
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
|
|
||||||
{"test_pymem_alloc0",
|
{"test_pymem_alloc0",
|
||||||
|
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
|
||||||
|
{"test_pymem_setrawallocators",
|
||||||
(PyCFunction)test_pymem_setrawallocators, METH_NOARGS},
|
(PyCFunction)test_pymem_setrawallocators, METH_NOARGS},
|
||||||
{"test_pymem_setallocators",
|
{"test_pymem_setallocators",
|
||||||
(PyCFunction)test_pymem_setallocators, METH_NOARGS},
|
(PyCFunction)test_pymem_setallocators, METH_NOARGS},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue