Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7f2e81

Browse files
committed
Remove unreachable "return 1" at end of ensure_fromlist().
1 parent aa9606f commit a7f2e81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/import.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,7 @@ ensure_fromlist(mod, fromlist, buf, buflen, recursive)
12551255
Py_DECREF(item);
12561256
}
12571257

1258-
return 1;
1258+
/* NOTREACHED */
12591259
}
12601260

12611261
static PyObject *

0 commit comments

Comments
 (0)