diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-20 03:47:14 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-20 03:47:14 (GMT) |
commit | a45cacfc1c4fb2b7b1b5c74e1f6b56d6ca2c9e4c (patch) | |
tree | d6f8c90d17a1b690f15037493c348468cc14cd3f /Lib/compiler | |
parent | 8d7626c23f89cfed31b04a05c9ec2fba7e0a7bf4 (diff) | |
download | cpython-a45cacfc1c4fb2b7b1b5c74e1f6b56d6ca2c9e4c.zip cpython-a45cacfc1c4fb2b7b1b5c74e1f6b56d6ca2c9e4c.tar.gz cpython-a45cacfc1c4fb2b7b1b5c74e1f6b56d6ca2c9e4c.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/compiler')
-rw-r--r-- | Lib/compiler/pycodegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 02e7764..87558b2 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) |