diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2015-10-30 08:36:49 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2015-10-30 08:36:49 +0100 |
commit | 558613a5fea480a6cc35f4156940f491b2ec7bac (patch) | |
tree | f66ffbff2d1cdc24d469d7aedbab9cb54cfba689 /Cython/Compiler/ParseTreeTransforms.py | |
parent | 0de715305c4701f42c1b8d313a422a989f529f20 (diff) | |
download | cython-558613a5fea480a6cc35f4156940f491b2ec7bac.tar.gz |
repair calling cython builtins as part of call node arguments
Diffstat (limited to 'Cython/Compiler/ParseTreeTransforms.py')
-rw-r--r-- | Cython/Compiler/ParseTreeTransforms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cython/Compiler/ParseTreeTransforms.py b/Cython/Compiler/ParseTreeTransforms.py index 1d1f38a50..b34f44bc5 100644 --- a/Cython/Compiler/ParseTreeTransforms.py +++ b/Cython/Compiler/ParseTreeTransforms.py @@ -2773,6 +2773,8 @@ class TransformBuiltinMethods(EnvTransform): node.function.pos, type=type, operand=args[1], typecheck=typecheck) else: error(args[0].pos, "Not a type") + + self.visitchildren(node) return node |