We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c61450 commit 90e995bCopy full SHA for 90e995b
Modules/itertoolsmodule.c
@@ -547,9 +547,9 @@ groupby_next(PyObject *op)
547
int rcmp;
548
549
/* A user-defined __eq__ can re-enter groupby and advance the iterator,
550
- mutating gbo->tgtkey / gbo->currkey while we are comparing them.
551
- Take local snapshots and hold strong references so INCREF/DECREF
552
- apply to the same objects even under re-entrancy. */
+ mutating gbo->tgtkey / gbo->currkey while we are comparing them.
+ Take local snapshots and hold strong references so INCREF/DECREF
+ apply to the same objects even under re-entrancy. */
553
PyObject *tgtkey = gbo->tgtkey;
554
PyObject *currkey = gbo->currkey;
555
0 commit comments