Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 53f4524

Browse files
committed
disable code generation for access statement
1 parent 447ae53 commit 53f4524

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Python/compile.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1687,6 +1687,7 @@ com_access_stmt(c, n)
16871687
struct compiling *c;
16881688
node *n;
16891689
{
1690+
#if 0
16901691
int i, j, k, mode, imode;
16911692
object *vmode;
16921693
REQ(n, access_stmt);
@@ -1737,6 +1738,7 @@ com_access_stmt(c, n)
17371738
com_addoparg(c, LOAD_CONST, imode);
17381739
com_addopname(c, ACCESS_MODE, CHILD(n, i));
17391740
}
1741+
#endif
17401742
}
17411743

17421744
static void

0 commit comments

Comments
 (0)