From: Guido van Rossum Date: Sun, 8 Oct 1995 00:42:46 +0000 (+0000) Subject: disable code generation for access statement X-Git-Tag: v1.3~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53f4524a9211abfe6e8f2be5de649e5f3f6bea01;p=thirdparty%2FPython%2Fcpython.git disable code generation for access statement --- diff --git a/Python/compile.c b/Python/compile.c index 6277e42e597f..21a47f2460cf 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -1687,6 +1687,7 @@ com_access_stmt(c, n) struct compiling *c; node *n; { +#if 0 int i, j, k, mode, imode; object *vmode; REQ(n, access_stmt); @@ -1737,6 +1738,7 @@ com_access_stmt(c, n) com_addoparg(c, LOAD_CONST, imode); com_addopname(c, ACCESS_MODE, CHILD(n, i)); } +#endif } static void