Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove reduntant Py_XDECREF(param) call in genricalias object call
  • Loading branch information
prakashsellathurai committed Apr 8, 2026
commit 1defe5da55126f10deccfdfad21f62ec07adfc8a
1 change: 0 additions & 1 deletion Objects/genericaliasobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ _Py_make_parameters(PyObject *args)
len += needed;
if (_PyTuple_Resize(&parameters, len) < 0) {
Py_DECREF(subparams);
Py_XDECREF(parameters);
Py_XDECREF(tuple_args);
return NULL;
}
Expand Down