We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 345b71f commit 0fac493Copy full SHA for 0fac493
PCbuild/get_external.py
@@ -74,7 +74,7 @@ def fetch_release(tag, tarball_dir, *, org='python', verbose=False):
74
def extract_tarball(externals_dir, tarball_path, tag):
75
output_path = externals_dir / tag
76
with tarfile.open(tarball_path) as tf:
77
- tf.extractall(os.fspath(externals_dir))
+ tf.extractall(os.fspath(externals_dir), filter='data')
78
return output_path
79
80
0 commit comments