mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
raised an error. Replace them with using concrete types API that never fails if appropriate.
This commit is contained in:
parent
c209b70d61
commit
bf623ae884
14 changed files with 108 additions and 48 deletions
|
@ -2021,8 +2021,8 @@ newKqueue_Object(PyTypeObject *type, SOCKET fd)
|
|||
static PyObject *
|
||||
kqueue_queue_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
if ((args != NULL && PyObject_Size(args)) ||
|
||||
(kwds != NULL && PyObject_Size(kwds))) {
|
||||
if (PyTuple_GET_SIZE(args) ||
|
||||
(kwds != NULL && PyDict_GET_SIZE(kwds))) {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
"select.kqueue doesn't accept arguments");
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue