mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
gh-116417: Move limited C API list.c tests to _testlimitedcapi (#116602)
Split list.c and set.c tests of _testcapi into two parts: limited C API tests in _testlimitedcapi and non-limited C API tests in _testcapi.
This commit is contained in:
parent
4159644177
commit
ecb4a2b711
@ -4,6 +4,7 @@ import unittest
|
||||
from test.support import import_helper
|
||||
from collections import UserList
|
||||
_testcapi = import_helper.import_module('_testcapi')
|
||||
_testlimitedcapi = import_helper.import_module('_testlimitedcapi')
|
||||
|
||||
NULL = None
|
||||
PY_SSIZE_T_MIN = _testcapi.PY_SSIZE_T_MIN
|
||||
@ -25,7 +26,7 @@ class DelAppend:
|
||||
class CAPITest(unittest.TestCase):
|
||||
def test_check(self):
|
||||
# Test PyList_Check()
|
||||
check = _testcapi.list_check
|
||||
check = _testlimitedcapi.list_check
|
||||
self.assertTrue(check([1, 2]))
|
||||
self.assertTrue(check([]))
|
||||
self.assertTrue(check(ListSubclass([1, 2])))
|
||||
@ -39,7 +40,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_check_exact(self):
|
||||
# Test PyList_CheckExact()
|
||||
check = _testcapi.list_check_exact
|
||||
check = _testlimitedcapi.list_check_exact
|
||||
self.assertTrue(check([1]))
|
||||
self.assertTrue(check([]))
|
||||
self.assertFalse(check(ListSubclass([1])))
|
||||
@ -51,7 +52,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_new(self):
|
||||
# Test PyList_New()
|
||||
list_new = _testcapi.list_new
|
||||
list_new = _testlimitedcapi.list_new
|
||||
lst = list_new(0)
|
||||
self.assertEqual(lst, [])
|
||||
self.assertIs(type(lst), list)
|
||||
@ -62,7 +63,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_size(self):
|
||||
# Test PyList_Size()
|
||||
size = _testcapi.list_size
|
||||
size = _testlimitedcapi.list_size
|
||||
self.assertEqual(size([1, 2]), 2)
|
||||
self.assertEqual(size(ListSubclass([1, 2])), 2)
|
||||
self.assertRaises(SystemError, size, UserList())
|
||||
@ -98,11 +99,11 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_getitem(self):
|
||||
# Test PyList_GetItem()
|
||||
self.check_list_get_item(_testcapi.list_getitem, SystemError)
|
||||
self.check_list_get_item(_testlimitedcapi.list_getitem, SystemError)
|
||||
|
||||
def test_list_get_item_ref(self):
|
||||
# Test PyList_GetItemRef()
|
||||
self.check_list_get_item(_testcapi.list_get_item_ref, TypeError)
|
||||
self.check_list_get_item(_testlimitedcapi.list_get_item_ref, TypeError)
|
||||
|
||||
def test_list_get_item(self):
|
||||
# Test PyList_GET_ITEM()
|
||||
@ -119,7 +120,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_setitem(self):
|
||||
# Test PyList_SetItem()
|
||||
setitem = _testcapi.list_setitem
|
||||
setitem = _testlimitedcapi.list_setitem
|
||||
lst = [1, 2, 3]
|
||||
setitem(lst, 0, 10)
|
||||
self.assertEqual(lst, [10, 2, 3])
|
||||
@ -151,7 +152,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_insert(self):
|
||||
# Test PyList_Insert()
|
||||
insert = _testcapi.list_insert
|
||||
insert = _testlimitedcapi.list_insert
|
||||
lst = [1, 2, 3]
|
||||
insert(lst, 0, 23)
|
||||
self.assertEqual(lst, [23, 1, 2, 3])
|
||||
@ -173,7 +174,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_append(self):
|
||||
# Test PyList_Append()
|
||||
append = _testcapi.list_append
|
||||
append = _testlimitedcapi.list_append
|
||||
lst = [1, 2, 3]
|
||||
append(lst, 10)
|
||||
self.assertEqual(lst, [1, 2, 3, 10])
|
||||
@ -186,7 +187,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_getslice(self):
|
||||
# Test PyList_GetSlice()
|
||||
getslice = _testcapi.list_getslice
|
||||
getslice = _testlimitedcapi.list_getslice
|
||||
lst = [1, 2, 3]
|
||||
|
||||
# empty
|
||||
@ -210,7 +211,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_setslice(self):
|
||||
# Test PyList_SetSlice()
|
||||
list_setslice = _testcapi.list_setslice
|
||||
list_setslice = _testlimitedcapi.list_setslice
|
||||
def set_slice(lst, low, high, value):
|
||||
lst = lst.copy()
|
||||
self.assertEqual(list_setslice(lst, low, high, value), 0)
|
||||
@ -265,7 +266,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_sort(self):
|
||||
# Test PyList_Sort()
|
||||
sort = _testcapi.list_sort
|
||||
sort = _testlimitedcapi.list_sort
|
||||
lst = [4, 6, 7, 3, 1, 5, 9, 2, 0, 8]
|
||||
sort(lst)
|
||||
self.assertEqual(lst, list(range(10)))
|
||||
@ -281,7 +282,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_reverse(self):
|
||||
# Test PyList_Reverse()
|
||||
reverse = _testcapi.list_reverse
|
||||
reverse = _testlimitedcapi.list_reverse
|
||||
def list_reverse(lst):
|
||||
self.assertEqual(reverse(lst), 0)
|
||||
return lst
|
||||
@ -295,7 +296,7 @@ class CAPITest(unittest.TestCase):
|
||||
|
||||
def test_list_astuple(self):
|
||||
# Test PyList_AsTuple()
|
||||
astuple = _testcapi.list_astuple
|
||||
astuple = _testlimitedcapi.list_astuple
|
||||
self.assertEqual(astuple([]), ())
|
||||
self.assertEqual(astuple([2, 5, 10]), (2, 5, 10))
|
||||
|
||||
|
@ -2,8 +2,10 @@ import unittest
|
||||
|
||||
from test.support import import_helper
|
||||
|
||||
# Skip this test if the _testcapi or _testinternalcapi modules aren't available.
|
||||
# Skip this test if the _testcapi, _testlimitedcapi or _testinternalcapi
|
||||
# modules aren't available.
|
||||
_testcapi = import_helper.import_module('_testcapi')
|
||||
_testlimitedcapi = import_helper.import_module('_testlimitedcapi')
|
||||
_testinternalcapi = import_helper.import_module('_testinternalcapi')
|
||||
|
||||
class set_subclass(set):
|
||||
@ -23,7 +25,7 @@ class BaseSetTests:
|
||||
|
||||
class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
def test_set_check(self):
|
||||
check = _testcapi.set_check
|
||||
check = _testlimitedcapi.set_check
|
||||
self.assertTrue(check(set()))
|
||||
self.assertTrue(check({1, 2}))
|
||||
self.assertFalse(check(frozenset()))
|
||||
@ -33,7 +35,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: check(NULL)
|
||||
|
||||
def test_set_check_exact(self):
|
||||
check = _testcapi.set_checkexact
|
||||
check = _testlimitedcapi.set_checkexact
|
||||
self.assertTrue(check(set()))
|
||||
self.assertTrue(check({1, 2}))
|
||||
self.assertFalse(check(frozenset()))
|
||||
@ -43,7 +45,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: check(NULL)
|
||||
|
||||
def test_frozenset_check(self):
|
||||
check = _testcapi.frozenset_check
|
||||
check = _testlimitedcapi.frozenset_check
|
||||
self.assertFalse(check(set()))
|
||||
self.assertTrue(check(frozenset()))
|
||||
self.assertTrue(check(frozenset({1, 2})))
|
||||
@ -53,7 +55,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: check(NULL)
|
||||
|
||||
def test_frozenset_check_exact(self):
|
||||
check = _testcapi.frozenset_checkexact
|
||||
check = _testlimitedcapi.frozenset_checkexact
|
||||
self.assertFalse(check(set()))
|
||||
self.assertTrue(check(frozenset()))
|
||||
self.assertTrue(check(frozenset({1, 2})))
|
||||
@ -63,7 +65,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: check(NULL)
|
||||
|
||||
def test_anyset_check(self):
|
||||
check = _testcapi.anyset_check
|
||||
check = _testlimitedcapi.anyset_check
|
||||
self.assertTrue(check(set()))
|
||||
self.assertTrue(check({1, 2}))
|
||||
self.assertTrue(check(frozenset()))
|
||||
@ -74,7 +76,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: check(NULL)
|
||||
|
||||
def test_anyset_check_exact(self):
|
||||
check = _testcapi.anyset_checkexact
|
||||
check = _testlimitedcapi.anyset_checkexact
|
||||
self.assertTrue(check(set()))
|
||||
self.assertTrue(check({1, 2}))
|
||||
self.assertTrue(check(frozenset()))
|
||||
@ -85,7 +87,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: check(NULL)
|
||||
|
||||
def test_set_new(self):
|
||||
set_new = _testcapi.set_new
|
||||
set_new = _testlimitedcapi.set_new
|
||||
self.assertEqual(set_new().__class__, set)
|
||||
self.assertEqual(set_new(), set())
|
||||
self.assertEqual(set_new((1, 1, 2)), {1, 2})
|
||||
@ -98,7 +100,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
set_new((1, {}))
|
||||
|
||||
def test_frozenset_new(self):
|
||||
frozenset_new = _testcapi.frozenset_new
|
||||
frozenset_new = _testlimitedcapi.frozenset_new
|
||||
self.assertEqual(frozenset_new().__class__, frozenset)
|
||||
self.assertEqual(frozenset_new(), frozenset())
|
||||
self.assertEqual(frozenset_new((1, 1, 2)), frozenset({1, 2}))
|
||||
@ -111,7 +113,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
frozenset_new((1, {}))
|
||||
|
||||
def test_set_size(self):
|
||||
get_size = _testcapi.set_size
|
||||
get_size = _testlimitedcapi.set_size
|
||||
self.assertEqual(get_size(set()), 0)
|
||||
self.assertEqual(get_size(frozenset()), 0)
|
||||
self.assertEqual(get_size({1, 1, 2}), 2)
|
||||
@ -134,7 +136,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: get_size(object())
|
||||
|
||||
def test_set_contains(self):
|
||||
contains = _testcapi.set_contains
|
||||
contains = _testlimitedcapi.set_contains
|
||||
for cls in (set, frozenset, set_subclass, frozenset_subclass):
|
||||
with self.subTest(cls=cls):
|
||||
instance = cls((1, 2))
|
||||
@ -147,7 +149,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: contains(NULL, NULL)
|
||||
|
||||
def test_add(self):
|
||||
add = _testcapi.set_add
|
||||
add = _testlimitedcapi.set_add
|
||||
for cls in (set, set_subclass):
|
||||
with self.subTest(cls=cls):
|
||||
instance = cls((1, 2))
|
||||
@ -165,7 +167,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: add(NULL, NULL)
|
||||
|
||||
def test_discard(self):
|
||||
discard = _testcapi.set_discard
|
||||
discard = _testlimitedcapi.set_discard
|
||||
for cls in (set, set_subclass):
|
||||
with self.subTest(cls=cls):
|
||||
instance = cls((1, 2))
|
||||
@ -187,7 +189,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: discard(NULL, NULL)
|
||||
|
||||
def test_pop(self):
|
||||
pop = _testcapi.set_pop
|
||||
pop = _testlimitedcapi.set_pop
|
||||
orig = (1, 2)
|
||||
for cls in (set, set_subclass):
|
||||
with self.subTest(cls=cls):
|
||||
@ -204,7 +206,7 @@ class TestSetCAPI(BaseSetTests, unittest.TestCase):
|
||||
# CRASHES: pop(NULL)
|
||||
|
||||
def test_clear(self):
|
||||
clear = _testcapi.set_clear
|
||||
clear = _testlimitedcapi.set_clear
|
||||
for cls in (set, set_subclass):
|
||||
with self.subTest(cls=cls):
|
||||
instance = cls((1, 2))
|
||||
|
@ -163,7 +163,7 @@
|
||||
@MODULE__TESTBUFFER_TRUE@_testbuffer _testbuffer.c
|
||||
@MODULE__TESTINTERNALCAPI_TRUE@_testinternalcapi _testinternalcapi.c _testinternalcapi/test_lock.c _testinternalcapi/pytime.c _testinternalcapi/set.c _testinternalcapi/test_critical_sections.c
|
||||
@MODULE__TESTCAPI_TRUE@_testcapi _testcapimodule.c _testcapi/vectorcall.c _testcapi/heaptype.c _testcapi/abstract.c _testcapi/unicode.c _testcapi/dict.c _testcapi/set.c _testcapi/list.c _testcapi/tuple.c _testcapi/getargs.c _testcapi/datetime.c _testcapi/docstring.c _testcapi/mem.c _testcapi/watchers.c _testcapi/long.c _testcapi/float.c _testcapi/complex.c _testcapi/numbers.c _testcapi/structmember.c _testcapi/exceptions.c _testcapi/code.c _testcapi/buffer.c _testcapi/pyatomic.c _testcapi/file.c _testcapi/codec.c _testcapi/immortal.c _testcapi/gc.c _testcapi/hash.c _testcapi/time.c
|
||||
@MODULE__TESTLIMITEDCAPI_TRUE@_testlimitedcapi _testlimitedcapi.c _testlimitedcapi/bytearray.c _testlimitedcapi/bytes.c _testlimitedcapi/heaptype_relative.c _testlimitedcapi/pyos.c _testlimitedcapi/sys.c _testlimitedcapi/vectorcall_limited.c
|
||||
@MODULE__TESTLIMITEDCAPI_TRUE@_testlimitedcapi _testlimitedcapi.c _testlimitedcapi/bytearray.c _testlimitedcapi/bytes.c _testlimitedcapi/heaptype_relative.c _testlimitedcapi/list.c _testlimitedcapi/pyos.c _testlimitedcapi/set.c _testlimitedcapi/sys.c _testlimitedcapi/vectorcall_limited.c
|
||||
@MODULE__TESTCLINIC_TRUE@_testclinic _testclinic.c
|
||||
@MODULE__TESTCLINIC_LIMITED_TRUE@_testclinic_limited _testclinic_limited.c
|
||||
|
||||
|
@ -1,32 +1,6 @@
|
||||
#include "parts.h"
|
||||
#include "util.h"
|
||||
|
||||
static PyObject *
|
||||
list_check(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PyLong_FromLong(PyList_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_check_exact(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PyLong_FromLong(PyList_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_new(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
return PyList_New(PyLong_AsSsize_t(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_size(PyObject *Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_SIZE(PyList_Size(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_get_size(PyObject *Py_UNUSED(module), PyObject *obj)
|
||||
@ -35,17 +9,6 @@ list_get_size(PyObject *Py_UNUSED(module), PyObject *obj)
|
||||
RETURN_SIZE(PyList_GET_SIZE(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_getitem(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj;
|
||||
Py_ssize_t i;
|
||||
if (!PyArg_ParseTuple(args, "On", &obj, &i)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
return Py_XNewRef(PyList_GetItem(obj, i));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_get_item(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
@ -59,31 +22,6 @@ list_get_item(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
return Py_XNewRef(PyList_GET_ITEM(obj, i));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_get_item_ref(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj;
|
||||
Py_ssize_t i;
|
||||
if (!PyArg_ParseTuple(args, "On", &obj, &i)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
return PyList_GetItemRef(obj, i);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_setitem(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
Py_ssize_t i;
|
||||
if (!PyArg_ParseTuple(args, "OnO", &obj, &i, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_SetItem(obj, i, Py_XNewRef(value)));
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_set_item(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
@ -100,79 +38,6 @@ list_set_item(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_insert(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
Py_ssize_t where;
|
||||
if (!PyArg_ParseTuple(args, "OnO", &obj, &where, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_Insert(obj, where, Py_XNewRef(value)));
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_append(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_Append(obj, value));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_getslice(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj;
|
||||
Py_ssize_t ilow, ihigh;
|
||||
if (!PyArg_ParseTuple(args, "Onn", &obj, &ilow, &ihigh)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
return PyList_GetSlice(obj, ilow, ihigh);
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_setslice(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
Py_ssize_t ilow, ihigh;
|
||||
if (!PyArg_ParseTuple(args, "OnnO", &obj, &ilow, &ihigh, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_SetSlice(obj, ilow, ihigh, value));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_sort(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyList_Sort(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_reverse(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyList_Reverse(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_astuple(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PyList_AsTuple(obj);
|
||||
}
|
||||
|
||||
|
||||
static PyObject *
|
||||
list_clear(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
@ -196,25 +61,12 @@ list_extend(PyObject* Py_UNUSED(module), PyObject *args)
|
||||
|
||||
|
||||
static PyMethodDef test_methods[] = {
|
||||
{"list_check", list_check, METH_O},
|
||||
{"list_check_exact", list_check_exact, METH_O},
|
||||
{"list_new", list_new, METH_O},
|
||||
{"list_size", list_size, METH_O},
|
||||
{"list_get_size", list_get_size, METH_O},
|
||||
{"list_getitem", list_getitem, METH_VARARGS},
|
||||
{"list_get_item", list_get_item, METH_VARARGS},
|
||||
{"list_get_item_ref", list_get_item_ref, METH_VARARGS},
|
||||
{"list_setitem", list_setitem, METH_VARARGS},
|
||||
{"list_set_item", list_set_item, METH_VARARGS},
|
||||
{"list_insert", list_insert, METH_VARARGS},
|
||||
{"list_append", list_append, METH_VARARGS},
|
||||
{"list_getslice", list_getslice, METH_VARARGS},
|
||||
{"list_setslice", list_setslice, METH_VARARGS},
|
||||
{"list_sort", list_sort, METH_O},
|
||||
{"list_reverse", list_reverse, METH_O},
|
||||
{"list_astuple", list_astuple, METH_O},
|
||||
{"list_clear", list_clear, METH_O},
|
||||
{"list_extend", list_extend, METH_VARARGS},
|
||||
|
||||
{NULL},
|
||||
};
|
||||
|
||||
|
@ -1,75 +1,6 @@
|
||||
#include "parts.h"
|
||||
#include "util.h"
|
||||
|
||||
static PyObject *
|
||||
set_check(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PySet_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_checkexact(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PySet_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
frozenset_check(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyFrozenSet_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
frozenset_checkexact(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyFrozenSet_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
anyset_check(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyAnySet_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
anyset_checkexact(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyAnySet_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_new(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *iterable = NULL;
|
||||
if (!PyArg_ParseTuple(args, "|O", &iterable)) {
|
||||
return NULL;
|
||||
}
|
||||
return PySet_New(iterable);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
frozenset_new(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *iterable = NULL;
|
||||
if (!PyArg_ParseTuple(args, "|O", &iterable)) {
|
||||
return NULL;
|
||||
}
|
||||
return PyFrozenSet_New(iterable);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_size(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_SIZE(PySet_Size(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_get_size(PyObject *self, PyObject *obj)
|
||||
{
|
||||
@ -77,111 +8,8 @@ set_get_size(PyObject *self, PyObject *obj)
|
||||
RETURN_SIZE(PySet_GET_SIZE(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_contains(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *obj, *item;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &item)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(item);
|
||||
RETURN_INT(PySet_Contains(obj, item));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_add(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *obj, *item;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &item)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(item);
|
||||
RETURN_INT(PySet_Add(obj, item));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_discard(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *obj, *item;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &item)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(item);
|
||||
RETURN_INT(PySet_Discard(obj, item));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_pop(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PySet_Pop(obj);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_clear(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PySet_Clear(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
test_frozenset_add_in_capi(PyObject *self, PyObject *Py_UNUSED(obj))
|
||||
{
|
||||
// Test that `frozenset` can be used with `PySet_Add`,
|
||||
// when frozenset is just created in CAPI.
|
||||
PyObject *fs = PyFrozenSet_New(NULL);
|
||||
if (fs == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
PyObject *num = PyLong_FromLong(1);
|
||||
if (num == NULL) {
|
||||
goto error;
|
||||
}
|
||||
if (PySet_Add(fs, num) < 0) {
|
||||
goto error;
|
||||
}
|
||||
int contains = PySet_Contains(fs, num);
|
||||
if (contains < 0) {
|
||||
goto error;
|
||||
}
|
||||
else if (contains == 0) {
|
||||
goto unexpected;
|
||||
}
|
||||
Py_DECREF(fs);
|
||||
Py_DECREF(num);
|
||||
Py_RETURN_NONE;
|
||||
|
||||
unexpected:
|
||||
PyErr_SetString(PyExc_ValueError, "set does not contain expected value");
|
||||
error:
|
||||
Py_DECREF(fs);
|
||||
Py_XDECREF(num);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static PyMethodDef test_methods[] = {
|
||||
{"set_check", set_check, METH_O},
|
||||
{"set_checkexact", set_checkexact, METH_O},
|
||||
{"frozenset_check", frozenset_check, METH_O},
|
||||
{"frozenset_checkexact", frozenset_checkexact, METH_O},
|
||||
{"anyset_check", anyset_check, METH_O},
|
||||
{"anyset_checkexact", anyset_checkexact, METH_O},
|
||||
|
||||
{"set_new", set_new, METH_VARARGS},
|
||||
{"frozenset_new", frozenset_new, METH_VARARGS},
|
||||
|
||||
{"set_size", set_size, METH_O},
|
||||
{"set_get_size", set_get_size, METH_O},
|
||||
{"set_contains", set_contains, METH_VARARGS},
|
||||
{"set_add", set_add, METH_VARARGS},
|
||||
{"set_discard", set_discard, METH_VARARGS},
|
||||
{"set_pop", set_pop, METH_O},
|
||||
{"set_clear", set_clear, METH_O},
|
||||
|
||||
{"test_frozenset_add_in_capi", test_frozenset_add_in_capi, METH_NOARGS},
|
||||
|
||||
{NULL},
|
||||
};
|
||||
|
@ -35,9 +35,15 @@ PyInit__testlimitedcapi(void)
|
||||
if (_PyTestCapi_Init_HeaptypeRelative(mod) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
if (_PyTestCapi_Init_List(mod) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
if (_PyTestCapi_Init_PyOS(mod) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
if (_PyTestCapi_Init_Set(mod) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
if (_PyTestCapi_Init_Sys(mod) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
|
169
Modules/_testlimitedcapi/list.c
Normal file
169
Modules/_testlimitedcapi/list.c
Normal file
@ -0,0 +1,169 @@
|
||||
#include "parts.h"
|
||||
#include "util.h"
|
||||
|
||||
static PyObject *
|
||||
list_check(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PyLong_FromLong(PyList_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_check_exact(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PyLong_FromLong(PyList_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_new(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
return PyList_New(PyLong_AsSsize_t(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_size(PyObject *Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_SIZE(PyList_Size(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_getitem(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj;
|
||||
Py_ssize_t i;
|
||||
if (!PyArg_ParseTuple(args, "On", &obj, &i)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
return Py_XNewRef(PyList_GetItem(obj, i));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_get_item_ref(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj;
|
||||
Py_ssize_t i;
|
||||
if (!PyArg_ParseTuple(args, "On", &obj, &i)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
return PyList_GetItemRef(obj, i);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_setitem(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
Py_ssize_t i;
|
||||
if (!PyArg_ParseTuple(args, "OnO", &obj, &i, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_SetItem(obj, i, Py_XNewRef(value)));
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_insert(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
Py_ssize_t where;
|
||||
if (!PyArg_ParseTuple(args, "OnO", &obj, &where, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_Insert(obj, where, Py_XNewRef(value)));
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_append(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_Append(obj, value));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_getslice(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj;
|
||||
Py_ssize_t ilow, ihigh;
|
||||
if (!PyArg_ParseTuple(args, "Onn", &obj, &ilow, &ihigh)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
return PyList_GetSlice(obj, ilow, ihigh);
|
||||
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_setslice(PyObject *Py_UNUSED(module), PyObject *args)
|
||||
{
|
||||
PyObject *obj, *value;
|
||||
Py_ssize_t ilow, ihigh;
|
||||
if (!PyArg_ParseTuple(args, "OnnO", &obj, &ilow, &ihigh, &value)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(value);
|
||||
RETURN_INT(PyList_SetSlice(obj, ilow, ihigh, value));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_sort(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyList_Sort(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_reverse(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyList_Reverse(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
list_astuple(PyObject* Py_UNUSED(module), PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PyList_AsTuple(obj);
|
||||
}
|
||||
|
||||
|
||||
static PyMethodDef test_methods[] = {
|
||||
{"list_check", list_check, METH_O},
|
||||
{"list_check_exact", list_check_exact, METH_O},
|
||||
{"list_new", list_new, METH_O},
|
||||
{"list_size", list_size, METH_O},
|
||||
{"list_getitem", list_getitem, METH_VARARGS},
|
||||
{"list_get_item_ref", list_get_item_ref, METH_VARARGS},
|
||||
{"list_setitem", list_setitem, METH_VARARGS},
|
||||
{"list_insert", list_insert, METH_VARARGS},
|
||||
{"list_append", list_append, METH_VARARGS},
|
||||
{"list_getslice", list_getslice, METH_VARARGS},
|
||||
{"list_setslice", list_setslice, METH_VARARGS},
|
||||
{"list_sort", list_sort, METH_O},
|
||||
{"list_reverse", list_reverse, METH_O},
|
||||
{"list_astuple", list_astuple, METH_O},
|
||||
{NULL},
|
||||
};
|
||||
|
||||
int
|
||||
_PyTestCapi_Init_List(PyObject *m)
|
||||
{
|
||||
if (PyModule_AddFunctions(m, test_methods) < 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
@ -25,7 +25,9 @@
|
||||
int _PyTestCapi_Init_ByteArray(PyObject *module);
|
||||
int _PyTestCapi_Init_Bytes(PyObject *module);
|
||||
int _PyTestCapi_Init_HeaptypeRelative(PyObject *module);
|
||||
int _PyTestCapi_Init_List(PyObject *module);
|
||||
int _PyTestCapi_Init_PyOS(PyObject *module);
|
||||
int _PyTestCapi_Init_Set(PyObject *module);
|
||||
int _PyTestCapi_Init_Sys(PyObject *module);
|
||||
int _PyTestCapi_Init_VectorcallLimited(PyObject *module);
|
||||
|
||||
|
189
Modules/_testlimitedcapi/set.c
Normal file
189
Modules/_testlimitedcapi/set.c
Normal file
@ -0,0 +1,189 @@
|
||||
#include "parts.h"
|
||||
#include "util.h"
|
||||
|
||||
static PyObject *
|
||||
set_check(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PySet_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_checkexact(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PySet_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
frozenset_check(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyFrozenSet_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
frozenset_checkexact(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyFrozenSet_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
anyset_check(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyAnySet_Check(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
anyset_checkexact(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PyAnySet_CheckExact(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_new(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *iterable = NULL;
|
||||
if (!PyArg_ParseTuple(args, "|O", &iterable)) {
|
||||
return NULL;
|
||||
}
|
||||
return PySet_New(iterable);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
frozenset_new(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *iterable = NULL;
|
||||
if (!PyArg_ParseTuple(args, "|O", &iterable)) {
|
||||
return NULL;
|
||||
}
|
||||
return PyFrozenSet_New(iterable);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_size(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_SIZE(PySet_Size(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_contains(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *obj, *item;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &item)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(item);
|
||||
RETURN_INT(PySet_Contains(obj, item));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_add(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *obj, *item;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &item)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(item);
|
||||
RETURN_INT(PySet_Add(obj, item));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_discard(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *obj, *item;
|
||||
if (!PyArg_ParseTuple(args, "OO", &obj, &item)) {
|
||||
return NULL;
|
||||
}
|
||||
NULLABLE(obj);
|
||||
NULLABLE(item);
|
||||
RETURN_INT(PySet_Discard(obj, item));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_pop(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
return PySet_Pop(obj);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
set_clear(PyObject *self, PyObject *obj)
|
||||
{
|
||||
NULLABLE(obj);
|
||||
RETURN_INT(PySet_Clear(obj));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
test_frozenset_add_in_capi(PyObject *self, PyObject *Py_UNUSED(obj))
|
||||
{
|
||||
// Test that `frozenset` can be used with `PySet_Add`,
|
||||
// when frozenset is just created in CAPI.
|
||||
PyObject *fs = PyFrozenSet_New(NULL);
|
||||
if (fs == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
PyObject *num = PyLong_FromLong(1);
|
||||
if (num == NULL) {
|
||||
goto error;
|
||||
}
|
||||
if (PySet_Add(fs, num) < 0) {
|
||||
goto error;
|
||||
}
|
||||
int contains = PySet_Contains(fs, num);
|
||||
if (contains < 0) {
|
||||
goto error;
|
||||
}
|
||||
else if (contains == 0) {
|
||||
goto unexpected;
|
||||
}
|
||||
Py_DECREF(fs);
|
||||
Py_DECREF(num);
|
||||
Py_RETURN_NONE;
|
||||
|
||||
unexpected:
|
||||
PyErr_SetString(PyExc_ValueError, "set does not contain expected value");
|
||||
error:
|
||||
Py_DECREF(fs);
|
||||
Py_XDECREF(num);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static PyMethodDef test_methods[] = {
|
||||
{"set_check", set_check, METH_O},
|
||||
{"set_checkexact", set_checkexact, METH_O},
|
||||
{"frozenset_check", frozenset_check, METH_O},
|
||||
{"frozenset_checkexact", frozenset_checkexact, METH_O},
|
||||
{"anyset_check", anyset_check, METH_O},
|
||||
{"anyset_checkexact", anyset_checkexact, METH_O},
|
||||
|
||||
{"set_new", set_new, METH_VARARGS},
|
||||
{"frozenset_new", frozenset_new, METH_VARARGS},
|
||||
|
||||
{"set_size", set_size, METH_O},
|
||||
{"set_contains", set_contains, METH_VARARGS},
|
||||
{"set_add", set_add, METH_VARARGS},
|
||||
{"set_discard", set_discard, METH_VARARGS},
|
||||
{"set_pop", set_pop, METH_O},
|
||||
{"set_clear", set_clear, METH_O},
|
||||
|
||||
{"test_frozenset_add_in_capi", test_frozenset_add_in_capi, METH_NOARGS},
|
||||
|
||||
{NULL},
|
||||
};
|
||||
|
||||
int
|
||||
_PyTestCapi_Init_Set(PyObject *m)
|
||||
{
|
||||
if (PyModule_AddFunctions(m, test_methods) < 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
@ -97,7 +97,9 @@
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\bytearray.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\bytes.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\heaptype_relative.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\list.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\pyos.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\set.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\sys.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\vectorcall_limited.c" />
|
||||
</ItemGroup>
|
||||
|
@ -12,7 +12,9 @@
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\bytearray.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\bytes.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\heaptype_relative.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\list.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\pyos.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\set.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\sys.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi\vectorcall_limited.c" />
|
||||
<ClCompile Include="..\Modules\_testlimitedcapi.c" />
|
||||
|
Loading…
Reference in New Issue
Block a user