summaryrefslogtreecommitdiffstats
path: root/Lib/test/archiver_tests.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-67837, gh-112998: Fix dirs creation in concurrent extraction (GH-115082)Serhiy Storchaka2024-02-111-0/+22
| | | | | | | Avoid race conditions in the creation of directories during concurrent extraction in tarfile and zipfile. Co-authored-by: Samantha Hughes <shughes-uk@users.noreply.github.com> Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
* gh-114959: tarfile: do not ignore errors when extract a directory on top of ↵Serhiy Storchaka2024-02-031-0/+155
a file (GH-114960) Also, add tests common to tarfile and zipfile.