From fb57abbadf504bdaea15b10135962c7de8d9c88e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Tue, 15 Oct 2024 07:55:59 +0200 Subject: [PATCH] tests: fix URL to Python unparser --- tests/scripts/python/unparse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/python/unparse.py b/tests/scripts/python/unparse.py index 44e7be51c..c70a58573 100755 --- a/tests/scripts/python/unparse.py +++ b/tests/scripts/python/unparse.py @@ -42,8 +42,8 @@ class UnparsePython(object): """ Unparse AST to generate Python script code. - This class is inspired from unparse.py in cpython: - https://github.com/python/cpython/blob/master/Tools/parser/unparse.py + This class is inspired from _Unparser class in cpython: + https://github.com/python/cpython/blob/main/Lib/ast.py Note: only part of AST types are supported (just the types used by the script to test WeeChat scripting API).