diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-21 23:03:36 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-21 23:03:36 +0000 |
commit | d9920c255d4a88a70ff9bcfc21f273f5e42fff4e (patch) | |
tree | 981c07dc6aaeaedd31d9b672bc54856d8f7e19e4 /Python/compile.c | |
parent | f67caf8523341a7a8430c2065d0e6fa7898782da (diff) | |
download | cpython-git-d9920c255d4a88a70ff9bcfc21f273f5e42fff4e.tar.gz |
remove tmpname support since it's no longer used
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c index 29cd950553..3b5f5ef0a7 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -111,7 +111,6 @@ struct compiler_unit { members, you can reach all early allocated blocks. */ basicblock *u_blocks; basicblock *u_curblock; /* pointer to current block */ - int u_tmpname; /* temporary variables for list comps */ int u_nfblocks; struct fblockinfo u_fblock[CO_MAXBLOCKS]; @@ -468,7 +467,6 @@ compiler_enter_scope(struct compiler *c, identifier name, void *key, } u->u_blocks = NULL; - u->u_tmpname = 0; u->u_nfblocks = 0; u->u_firstlineno = lineno; u->u_lineno = 0; |