https://github.com/python/cpython/commit/b79becefb6d5ca2ec7e12a8c3b9b019ef410955e
commit: b79becefb6d5ca2ec7e12a8c3b9b019ef410955e
branch: 3.14
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2025-08-31T09:53:21+03:00
summary:

[3.14] gh-138158: Use the `"data"` tarfile extraction filter in 
`Tools/ssl/multissltests.py` (GH-138147) (#138262)

Co-authored-by: Tommaso Bona <[email protected]>

files:
M Tools/ssl/multissltests.py

diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py
index 3bede231748e6c..da21e7d97965d1 100755
--- a/Tools/ssl/multissltests.py
+++ b/Tools/ssl/multissltests.py
@@ -294,7 +294,7 @@ def _unpack_src(self):
                 raise ValueError(member.name, base)
             member.name = member.name[len(base):].lstrip('/')
         log.info("Unpacking files to {}".format(self.build_dir))
-        tf.extractall(self.build_dir, members)
+        tf.extractall(self.build_dir, members, filter='data')
 
     def _build_src(self, config_args=()):
         """Now build openssl"""

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to