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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7f2e813c94468506a6e10e8b5b97392a48da34d;p=thirdparty%2FPython%2Fcpython.git Remove unreachable "return 1" at end of ensure_fromlist(). --- diff --git a/Python/import.c b/Python/import.c index 579c24977c17..63bda7977db3 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 *