diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2004-03-21 15:18:50 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2004-03-21 15:18:50 (GMT) |
commit | 48485579249beb3549e0b201f830b1e4c48bb0db (patch) | |
tree | 7e4c969136176821af2b6b5c85b07b418cfce3fa | |
parent | ff5bc50bb0f12d5203173c7ee6840cc77a3bbe7a (diff) | |
download | cpython-48485579249beb3549e0b201f830b1e4c48bb0db.zip cpython-48485579249beb3549e0b201f830b1e4c48bb0db.tar.gz cpython-48485579249beb3549e0b201f830b1e4c48bb0db.tar.bz2 |
Remove unused instance attributes.
-rw-r--r-- | Lib/compiler/pycodegen.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 009afbd..292e859 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -204,8 +204,6 @@ class CodeGenerator: self.checkClass() self.locals = misc.Stack() self.setups = misc.Stack() - self.curStack = 0 - self.maxStack = 0 self.last_lineno = None self._setupGraphDelegation() self._div_op = "BINARY_DIVIDE" |