mirror of
https://github.com/python/cpython.git
synced 2025-09-15 13:16:12 +00:00
remove tmpname support since it's no longer used
This commit is contained in:
parent
f67caf8523
commit
d9920c255d
3 changed files with 0 additions and 30 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue