]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
disable code generation for access statement
authorGuido van Rossum <guido@python.org>
Sun, 8 Oct 1995 00:42:46 +0000 (00:42 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 8 Oct 1995 00:42:46 +0000 (00:42 +0000)
Python/compile.c

index 6277e42e597f028d65a7eaba10a94283d424b38d..21a47f2460cfe9bc0158c34a88b86298c41d73f8 100644 (file)
@@ -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