Skip to content

Commit 07881ac

Browse files
Apply suggestions from code review
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent 6d7c934 commit 07881ac

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Make concurrent iterations over :class:`itertools.chain` safe under free-threading.
1+
Make concurrent iterations over :class:`itertools.chain` safe under :term:`free threading`.

Modules/itertoolsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1922,7 +1922,7 @@ chain_next_lock_held(PyObject *op)
19221922
static PyObject *
19231923
chain_next(PyObject *op)
19241924
{
1925-
PyObject * result;
1925+
PyObject *result;
19261926
Py_BEGIN_CRITICAL_SECTION(op);
19271927
result = chain_next_lock_held(op);
19281928
Py_END_CRITICAL_SECTION()

0 commit comments

Comments
 (0)