From b190479b8d82f266aeb297342dd22e032b5eacfb Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 8 Oct 2022 19:12:58 -0400 Subject: [PATCH] Remove 'print' from test. --- CHANGES.rst | 5 +++++ test_zipp.py | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3ec5467..b53637d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +v3.9.1 +====== + +Removed 'print' expression in test_pickle. + v3.9.0 ====== diff --git a/test_zipp.py b/test_zipp.py index 900ca60..39dc32d 100644 --- a/test_zipp.py +++ b/test_zipp.py @@ -418,7 +418,6 @@ def test_inheritance(self, alpharep): ), ) def test_pickle(self, alpharep, path_type, subpath): - print(alpharep, path_type, subpath) zipfile_ondisk = path_type(self.zipfile_ondisk(alpharep)) saved_1 = pickle.dumps(zipp.Path(zipfile_ondisk, at=subpath))