diff options
author | Guido van Rossum <guido@python.org> | 1997-10-03 15:33:32 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-03 15:33:32 +0000 |
commit | a7f2e813c94468506a6e10e8b5b97392a48da34d (patch) | |
tree | 25e5495c9bd2758d3c6c8244b98e6743764783e9 /Python/import.c | |
parent | aa9606f45ad75439a76134b9ee1969d7c9749cf2 (diff) | |
download | cpython-git-a7f2e813c94468506a6e10e8b5b97392a48da34d.tar.gz |
Remove unreachable "return 1" at end of ensure_fromlist().
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 * |