summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-21 23:03:36 +0000
committerBenjamin Peterson <benjamin@python.org>2009-06-21 23:03:36 +0000
commit376bd5090b2273464eaf179e5cabbfd4a972c2fd (patch)
treed11be8a3b6985269a94382aef1c9ef03f6566de8 /Python/compile.c
parent266fb9824ada862a84369e8962430e583a3cb366 (diff)
downloadcpython-376bd5090b2273464eaf179e5cabbfd4a972c2fd.tar.gz
remove tmpname support since it's no longer used
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
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;