2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 04:22:16 +00:00

chore: remove meaningless comparison

This commit is contained in:
Eisuke Kawashima
2025-01-22 11:25:51 +09:00
committed by Stefan Seefeld
parent aa458d2ca9
commit 2b6f667e98

View File

@@ -161,7 +161,6 @@ PyObject* function::call(PyObject* args, PyObject* keywords) const
else
{
// build a new arg tuple, will adjust its size later
assert(max_arity <= static_cast<std::size_t>(ssize_t_max));
inner_args = handle<>(
PyTuple_New(static_cast<ssize_t>(max_arity)));