From a83177aac627764fb7ab5dc6bd87646586598934 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sun, 20 Feb 2022 22:10:54 +0100 Subject: [PATCH] support/testing/../sample_python_pyyaml_dec.py: unbreak after move to pyaml 6.0 Fixes https://gitlab.com/buildroot.org/buildroot/-/jobs/2088684091 python sample_python_pyyaml_dec.py Traceback (most recent call last): File "/root/sample_python_pyyaml_dec.py", line 5, in data = yaml.load(serialized) TypeError: load() missing 1 required positional argument: 'Loader' yaml.load() requires a loader argument since the move to version 6.0: https://github.com/yaml/pyyaml/pull/561 The test does not need the extra functionality of load(), so instead move to the recommended safe_load(). Signed-off-by: Peter Korsgaard Tested-by: Romain Naour Signed-off-by: Peter Korsgaard --- support/testing/tests/package/sample_python_pyyaml_dec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/sample_python_pyyaml_dec.py b/support/testing/tests/package/sample_python_pyyaml_dec.py index 9ab8931197..bb90934f26 100644 --- a/support/testing/tests/package/sample_python_pyyaml_dec.py +++ b/support/testing/tests/package/sample_python_pyyaml_dec.py @@ -2,7 +2,7 @@ import yaml with open("/tmp/data.yml", "rb") as f: serialized = f.read() -data = yaml.load(serialized) +data = yaml.safe_load(serialized) print(data) assert(data["name"] == "python-pyyaml") assert(data["versions"] == ["1", "2"])