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
Apply suggestions from code review
  • Loading branch information
kumaraditya303 authored Jun 30, 2025
commit ba9c4b7fdc9f86b77c0990f514d6206735ce8578
4 changes: 2 additions & 2 deletions Modules/itertoolsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2175,7 +2175,7 @@ product_next_lock_held(PyObject *op)
static PyObject *
product_next(PyObject *op)
{
PyObject * result;
PyObject *result;
Py_BEGIN_CRITICAL_SECTION(op);
result = product_next_lock_held(op);
Py_END_CRITICAL_SECTION()
Expand Down Expand Up @@ -2417,7 +2417,7 @@ combinations_next_lock_held(PyObject *op)
static PyObject *
combinations_next(PyObject *op)
{
PyObject * result;
PyObject *result;
Py_BEGIN_CRITICAL_SECTION(op);
result = combinations_next_lock_held(op);
Py_END_CRITICAL_SECTION()
Expand Down
Loading