From ca8ef6bc38b8bfd772ff19931b49a076de5c1ec4 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 13 Oct 2021 16:10:17 +0100 Subject: bitbake: codegen: implement ast.NodeVisitor.visit_Constant Since Python 3.8 visit_Num(), visit_Str() and so on are all deprecated and replaced with visit_Constant. We can't yet remove the deprecated functions until we require 3.8, but we can implement visit_Constant to silence the deprecation warnings. (Bitbake rev: 4edd5767fc6d699f5262862b763b6a99ad1f1bbf) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- bitbake/lib/codegen.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bitbake/lib/codegen.py b/bitbake/lib/codegen.py index 62a6748c47..6955a7ada5 100644 --- a/bitbake/lib/codegen.py +++ b/bitbake/lib/codegen.py @@ -401,6 +401,12 @@ class SourceGenerator(NodeVisitor): def visit_Num(self, node): self.write(repr(node.n)) + def visit_Constant(self, node): + # Python 3.8 deprecated visit_Num(), visit_Str(), visit_Bytes(), + # visit_NameConstant() and visit_Ellipsis(). They can be removed once we + # require 3.8+. + self.write(repr(node.value)) + def visit_Tuple(self, node): self.write('(') idx = -1 -- cgit v1.2.3-54-g00ecf