From: Guido van Rossum Date: Fri, 3 Oct 1997 15:33:32 +0000 (+0000) Subject: Remove unreachable "return 1" at end of ensure_fromlist(). X-Git-Tag: v1.5a4~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7f2e813c94468506a6e10e8b5b97392a48da34d;p=python Remove unreachable "return 1" at end of ensure_fromlist(). --- diff --git a/Python/import.c b/Python/import.c index 579c24977c..63bda7977d 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1255,7 +1255,7 @@ ensure_fromlist(mod, fromlist, buf, buflen, recursive) Py_DECREF(item); } - return 1; + /* NOTREACHED */ } static PyObject *