summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-10-08 00:42:46 (GMT)
committerGuido van Rossum <guido@python.org>1995-10-08 00:42:46 (GMT)
commit53f4524a9211abfe6e8f2be5de649e5f3f6bea01 (patch)
treea0647b599dd915af609aa0347968cb76431b0f02 /Python/compile.c
parent447ae53eab0ae1d0e9856a7145e9f8f7387150e6 (diff)
downloadcpython-53f4524a9211abfe6e8f2be5de649e5f3f6bea01.zip
cpython-53f4524a9211abfe6e8f2be5de649e5f3f6bea01.tar.gz
cpython-53f4524a9211abfe6e8f2be5de649e5f3f6bea01.tar.bz2
disable code generation for access statement
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 6277e42..21a47f2 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