mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-41870: Avoid the test when nargs=0 (GH-22462)
This commit is contained in:
parent
63298930fb
commit
fa7ce08017
1 changed files with 3 additions and 3 deletions
|
@ -72,9 +72,9 @@ bool_vectorcall(PyObject *type, PyObject * const*args,
|
|||
assert(PyType_Check(type));
|
||||
if (nargs) {
|
||||
ok = PyObject_IsTrue(args[0]);
|
||||
}
|
||||
if (ok < 0) {
|
||||
return NULL;
|
||||
if (ok < 0) {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
return PyBool_FromLong(ok);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue