summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_shutil.py
Commit message (Expand)AuthorAgeFilesLines
* gh-109590: Update shutil.which on Windows to prefer a PATHEXT extension on ex...Charles Machalow2023-10-021-10/+72
* gh-99203: shutil.make_archive(): restore select CPython <= 3.10.5 behavior (G...6t8k2023-08-161-0/+43
* gh-106300: Improve `assertRaises(Exception)` usages in tests (GH-106302)Nikita Sobolev2023-07-071-1/+1
* gh-105407: Remove unused imports in tests (#105408)Victor Stinner2023-06-061-1/+0
* gh-102950: Implement PEP 706 – Filter for tarfile.extractall (#102953)Petr Viktorin2023-04-241-13/+28
* GH-75586: Make shutil.which() on Windows more consistent with the OS (GH-103179)Charles Machalow2023-04-041-5/+81
* gh-102828: emit deprecation warning for onerror arg to shutil.rmtree (#102850)Irit Katriel2023-03-211-5/+11
* gh-102828: fix test failure (add missing skip instructions) (#102835)Irit Katriel2023-03-201-0/+4
* gh-102828: add onexc arg to shutil.rmtree. Deprecate onerror. (#102829)Irit Katriel2023-03-191-3/+167
* bpo-38523: ignore_dangling_symlinks does not apply recursively (GH-22937)Zackery Spytz2022-11-071-6/+13
* gh-74696: Pass root_dir to custom archivers which support it (GH-94251)Serhiy Storchaka2022-10-051-6/+43
* gh-94315: Check for DAC override capability (GH-94316)Christian Heimes2022-06-271-9/+6
* gh-74696: Do not change the current working directory in shutil.make_archive(...Serhiy Storchaka2022-06-221-17/+32
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-061-0/+1
* gh-90473: Skip and document more failing tests on WASI (GH-93436)Christian Heimes2022-06-021-0/+1
* gh-92670: Skip test_shutil.TestCopy.test_copyfile_nonexistent_dir on AIX (#92...Ayappan Perumal2022-05-191-0/+4
* bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365)Serhiy Storchaka2022-03-091-0/+21
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...andrei kulakov2021-09-211-0/+40
* bpo-43219: skip Solaris in the test as well (GH-27257)Jakub Kulík2021-07-201-1/+2
* bpo-43219: shutil.copyfile, raise a less confusing exception instead of IsADi...andrei kulakov2021-07-101-0/+9
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25181)Inada Naoki2021-04-051-9/+13
* bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001)Winson Luk2021-03-021-0/+37
* [WIP/RFC] bpo-15872: tests: remove oddity from test_rmtree_errors (GH-22967)Daniel Hahler2020-12-211-6/+3
* bpo-31904: skip some tests related to fifo on VxWorks (GH-23473)pxinwr2020-11-281-0/+4
* bpo-40592: shutil.which will not return None anymore if ; is the last char in...Christopher Marchfelder2020-10-231-0/+17
* bpo-40275: Use new test.support helper submodules in tests (GH-21169)Hai Shi2020-06-301-73/+74
* bpo-40275: More lazy imports in test.support (GH-20131)Hai Shi2020-05-181-12/+12
* bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#...Matthias Braun2020-03-171-6/+11
* bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-241-0/+42
* bpo-38688, shutil.copytree: consume iterator and create list of entries to pr...Bruno P. Kinoshita2019-11-271-0/+11
* bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967)Steve Dower2019-11-151-25/+24
* bpo-32689: Updates shutil.move to allow for Path objects to be used as source...Maxwell A McKinnon2019-10-011-0/+10
* bpo-38223: Reorganize test_shutil. (GH-16281)Serhiy Storchaka2019-09-261-487/+478
* bpo-37834: Normalise handling of reparse points on Windows (GH-15231)Steve Dower2019-08-211-3/+66
* bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287)Steve Dower2019-08-211-5/+1
* bpo-37421: Fix test_shutil: don't leak temporary files (GH-14416)Victor Stinner2019-06-261-2/+3
* bpo-36610: shutil.copyfile(): use sendfile() on Linux only (GH-13675)Giampaolo Rodola2019-05-301-3/+3
* bpo-24538: Fix bug in shutil involving the copying of xattrs to read-only fil...Olexa Bilaniuk2019-05-101-0/+8
* bpo-35755: shutil.which() uses os.confstr("CS_PATH") (GH-12858)Victor Stinner2019-04-171-0/+68
* bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry inste...Giampaolo Rodola2019-02-261-0/+18
* Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)Anthony Sottile2019-02-251-4/+0
* bpo-35704: Prevent test_shutil fail result when AIX is 32-bit and MAXDATA < 0...Michael Felt2019-02-181-0/+13
* bpo-18283: Add support for bytes to shutil.which (GH-11818)Cheryl Sabella2019-02-131-4/+17
* bpo-20849: add dirs_exist_ok arg to shutil.copytree (patch by Josh Bronson)jab2018-12-281-0/+25
* bpo-35458: Fix test_shutil.test_disk_usage() (GH-11111)Victor Stinner2018-12-111-1/+5
* bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372)Joe Pamer2018-09-251-0/+1
* bpo-34661: Fix test skipping call. (GH-9266)Benjamin Peterson2018-09-131-1/+1
* closes bpo-34661: Fix test_shutil if unzip doesn't support -t. (GH-9262)Benjamin Peterson2018-09-131-0/+2
* Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919)Victor Stinner2018-06-261-4/+5
* bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)Victor Stinner2018-06-221-5/+4