Kaydet (Commit) 53f4524a authored tarafından Guido van Rossum's avatar Guido van Rossum

disable code generation for access statement

üst 447ae53e
...@@ -1687,6 +1687,7 @@ com_access_stmt(c, n) ...@@ -1687,6 +1687,7 @@ com_access_stmt(c, n)
struct compiling *c; struct compiling *c;
node *n; node *n;
{ {
#if 0
int i, j, k, mode, imode; int i, j, k, mode, imode;
object *vmode; object *vmode;
REQ(n, access_stmt); REQ(n, access_stmt);
...@@ -1737,6 +1738,7 @@ com_access_stmt(c, n) ...@@ -1737,6 +1738,7 @@ com_access_stmt(c, n)
com_addoparg(c, LOAD_CONST, imode); com_addoparg(c, LOAD_CONST, imode);
com_addopname(c, ACCESS_MODE, CHILD(n, i)); com_addopname(c, ACCESS_MODE, CHILD(n, i));
} }
#endif
} }
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment