From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 31 Aug 2025 06:53:21 +0000 (+0200) Subject: [3.14] gh-138158: Use the `"data"` tarfile extraction filter in `Tools/ssl/multisslte... X-Git-Tag: v3.14.0rc3~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b79becefb6d5ca2ec7e12a8c3b9b019ef410955e;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-138158: Use the `"data"` tarfile extraction filter in `Tools/ssl/multissltests.py` (GH-138147) (#138262) Co-authored-by: Tommaso Bona --- diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 3bede231748e..da21e7d97965 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -294,7 +294,7 @@ class AbstractBuilder(object): 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"""