Skip to content

Commit 589572f

Browse files
committed
micro change
1 parent 827d48e commit 589572f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Objects/listobject.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3222,8 +3222,9 @@ list_sort_impl(PyListObject *self, PyObject *keyfunc, int reverse)
32223222
int binary_adapt = ms.listlen >= 100;
32233223
if (!binary_adapt) {
32243224
do {
3225-
/* Identify next run. */
32263225
Py_ssize_t n;
3226+
3227+
/* Identify next run. */
32273228
n = count_run(&ms, &lo, nremaining);
32283229
if (n < 0)
32293230
goto fail;
@@ -3263,8 +3264,9 @@ list_sort_impl(PyListObject *self, PyObject *keyfunc, int reverse)
32633264
int cd = 1;
32643265
int abinret;
32653266
do {
3266-
/* Identify next run. */
32673267
Py_ssize_t n;
3268+
3269+
/* Identify next run. */
32683270
n = count_run(&ms, &lo, nremaining);
32693271
if (n < 0)
32703272
goto fail;

0 commit comments

Comments
 (0)