From: Guido van Rossum Date: Tue, 14 May 1991 11:56:03 +0000 (+0000) Subject: Don't optimize and code X-Git-Tag: v0.9.8~945 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb8edfce22dccfb0014f4f43b1735d7e42e80c45;p=thirdparty%2FPython%2Fcpython.git Don't optimize and code --- diff --git a/Python/compile.c b/Python/compile.c index 5e6a18edafe4..5fa405d3ba5c 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1878,7 +1878,7 @@ compile(n, filename) else co = NULL; com_free(&sc); - if (co != NULL) + if (co != NULL && filename[0] != '<') optimizer(co); return co; }