From dbd04e1e44cf8b7fb8aee479a316011c6018c23e32209d468f1097a7281dbe23 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Sat, 29 Jul 2023 20:30:07 +0000 Subject: [PATCH] Fix patches OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python39?expand=0&rev=159 --- bpo-37596-make-set-marshalling.patch | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bpo-37596-make-set-marshalling.patch b/bpo-37596-make-set-marshalling.patch index 44bc85f..f484ed3 100644 --- a/bpo-37596-make-set-marshalling.patch +++ b/bpo-37596-make-set-marshalling.patch @@ -13,14 +13,13 @@ Subject: [PATCH] bpo-37596: Make `set` and `frozenset` marshalling --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py -@@ -1,5 +1,6 @@ +@@ -1,4 +1,5 @@ from test import support - from test.support import os_helper +from test.support.script_helper import assert_python_ok import array import io import marshal -@@ -318,6 +319,31 @@ class BugsTestCase(unittest.TestCase): +@@ -324,6 +325,31 @@ class BugsTestCase(unittest.TestCase): for i in range(len(data)): self.assertRaises(EOFError, marshal.loads, data[0: i])