From d91085598f5185b267ea51a3f615da9527af2ed2 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 17 Mar 2006 08:00:19 +0000 Subject: Remove apply() --- Lib/compiler/transformer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/compiler') diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py index cc91b4f10c..504e283b0a 100644 --- a/Lib/compiler/transformer.py +++ b/Lib/compiler/transformer.py @@ -90,7 +90,7 @@ def Node(*args): raise else: raise WalkerError, "Can't find appropriate Node type: %s" % str(args) - #return apply(ast.Node, args) + #return ast.Node(*args) class Transformer: """Utility object for transforming Python parse trees. -- cgit v1.2.1