diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-04 02:36:18 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-04 02:36:18 (GMT) |
commit | 6db15d7307b831766617f6a9700ecc4c75a16081 (patch) | |
tree | cbc747970fd7d68844de8abaca57c8102dc859b2 /Lib/compiler/pycodegen.py | |
parent | cea2cc4a21e7e2ba84f6dc11682821e502bd1f5f (diff) | |
download | cpython-6db15d7307b831766617f6a9700ecc4c75a16081.zip cpython-6db15d7307b831766617f6a9700ecc4c75a16081.tar.gz cpython-6db15d7307b831766617f6a9700ecc4c75a16081.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/compiler/pycodegen.py')
-rw-r--r-- | Lib/compiler/pycodegen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index e859ac5..e33551a 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -372,7 +372,7 @@ class CodeGenerator: ndecorators = len(node.decorators.nodes) else: ndecorators = 0 - + gen = self.FunctionGen(node, self.scopes, isLambda, self.class_name, self.get_module()) walk(node.code, gen) @@ -389,7 +389,7 @@ class CodeGenerator: else: self.emit('LOAD_CONST', gen) self.emit('MAKE_FUNCTION', len(node.defaults)) - + for i in range(ndecorators): self.emit('CALL_FUNCTION', 1) |