From 7708d697ee38f5d8c61b88737e941a4d1eb49691 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Thu, 17 Feb 2000 22:06:20 +0000 Subject: add varargs and kwargs flags to Lambda nodes --- Lib/compiler/ast.py | 5 +++++ Tools/compiler/compiler/ast.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 7a7a654..dfed562 100644 --- a/Lib/compiler/ast.py +++ b/Lib/compiler/ast.py @@ -105,6 +105,11 @@ class Lambda(Node): self.flags = flags self.code = code self._children = ('lambda', argnames, defaults, flags, code) + self.varargs = self.kwargs = None + if flags & CO_VARARGS: + self.varargs = 1 + if flags & CO_VARKEYWORDS: + self.kwargs = 1 def __repr__(self): return "Lambda(%s,%s,%s,%s)" % self._children[1:] diff --git a/Tools/compiler/compiler/ast.py b/Tools/compiler/compiler/ast.py index 7a7a654..dfed562 100644 --- a/Tools/compiler/compiler/ast.py +++ b/Tools/compiler/compiler/ast.py @@ -105,6 +105,11 @@ class Lambda(Node): self.flags = flags self.code = code self._children = ('lambda', argnames, defaults, flags, code) + self.varargs = self.kwargs = None + if flags & CO_VARARGS: + self.varargs = 1 + if flags & CO_VARKEYWORDS: + self.kwargs = 1 def __repr__(self): return "Lambda(%s,%s,%s,%s)" % self._children[1:] -- cgit v0.12