summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
Commit message (Expand)AuthorAgeFilesLines
* gh-109653: Defer importing `warnings` in several modules (#110286)Alex Waygood2023-10-041-1/+1
* gh-109590: Update shutil.which on Windows to prefer a PATHEXT extension on ex...Charles Machalow2023-10-021-2/+10
* gh-109748: Fix again venv test_zippath_from_non_installed_posix() (#110149)Victor Stinner2023-09-301-1/+1
* gh-99203: shutil.make_archive(): restore select CPython <= 3.10.5 behavior (G...6t8k2023-08-161-0/+4
* gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055)Steve Dower2023-05-301-0/+25
* gh-82814: fix shutil access error on WSL (#103790)Allan Lago2023-04-251-1/+1
* gh-102950: Implement PEP 706 – Filter for tarfile.extractall (#102953)Petr Viktorin2023-04-241-5/+12
* gh-102828: set stacklevel on deprecation warning (#103422)Irit Katriel2023-04-111-1/+1
* GH-75586: Make shutil.which() on Windows more consistent with the OS (GH-103179)Charles Machalow2023-04-041-41/+48
* gh-102828: emit deprecation warning for onerror arg to shutil.rmtree (#102850)Irit Katriel2023-03-211-0/+6
* gh-102828: add onexc arg to shutil.rmtree. Deprecate onerror. (#102829)Irit Katriel2023-03-191-44/+62
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-261-4/+1
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-19/+6
* bpo-38523: ignore_dangling_symlinks does not apply recursively (GH-22937)Zackery Spytz2022-11-071-2/+3
* gh-74696: Pass root_dir to custom archivers which support it (GH-94251)Serhiy Storchaka2022-10-051-9/+11
* gh-94844: Add pathlib support to shutil archive management (GH-94846)Oleg Iarygin2022-07-201-0/+2
* gh-74696: Do not change the current working directory in shutil.make_archive(...Serhiy Storchaka2022-06-221-34/+65
* shutil._copyfileobj_readinto: tiny speedup (#92377)Lucinda May Phipps2022-05-201-1/+2
* gh-88513: clarify shutil.copytree's dirs_exist_ok arg (GH-91434)Jack DeVries2022-04-121-3/+5
* bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365)Serhiy Storchaka2022-03-091-5/+12
* bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31...Lital Natan2022-02-201-2/+10
* bpo-42174: fallback to sane values if the columns or lines are 0 in get_termi...Filipe Laíns2021-10-191-2/+2
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...andrei kulakov2021-09-211-29/+30
* bpo-33671 fix orphaned comment in shutil.copyfileobj (GH-27516)Anthony Sottile2021-07-311-1/+1
* bpo-43219: shutil.copyfile, raise a less confusing exception instead of IsADi...andrei kulakov2021-07-101-21/+29
* bpo-43650: Fix MemoryError on zip.read in shutil._unpack_zipfile for large fi...Igor Bolshakov2021-05-171-10/+6
* bpo-43743 add comment stating _USE_CP_SENDFILE should not be removed (#26024)Giampaolo Rodola2021-05-101-0/+2
* bpo-41718: subprocess imports grp and pwd on demand (GH-24987)Victor Stinner2021-03-231-12/+14
* bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001)Winson Luk2021-03-021-0/+11
* bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585)Michal Čihař2020-11-101-1/+1
* bpo-40592: shutil.which will not return None anymore if ; is the last char in...Christopher Marchfelder2020-10-231-1/+6
* bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resourc...Saiyang Gou2020-02-131-0/+10
* bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-241-1/+1
* bpo-38688, shutil.copytree: consume iterator and create list of entries to pr...Bruno P. Kinoshita2019-11-271-6/+7
* bpo-38319: Fix shutil._fastcopy_sendfile(): set sendfile() max block size (GH...Giampaolo Rodola2019-10-011-3/+7
* bpo-32689: Updates shutil.move to allow for Path objects to be used as source...Maxwell A McKinnon2019-10-011-2/+17
* Clarify that shutil's copy functions can accept path-like values (GH-15141)Boris Verhovsky2019-09-091-1/+2
* bpo-37834: Prevent shutil.rmtree exception (GH-15602)Ned Deily2019-08-291-1/+1
* bpo-37834: Normalise handling of reparse points on Windows (GH-15231)Steve Dower2019-08-211-7/+41
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+3
* bpo-26660, bpo-35144: Fix permission errors in TemporaryDirectory cleanup. (G...Serhiy Storchaka2019-05-311-3/+8
* bpo-36610: shutil.copyfile(): use sendfile() on Linux only (GH-13675)Giampaolo Rodola2019-05-301-6/+6
* bpo-24564: shutil.copystat(): ignore EINVAL on os.setxattr() (GH-13369)Ying Wang2019-05-301-2/+3
* bpo-24538: Fix bug in shutil involving the copying of xattrs to read-only fil...Olexa Bilaniuk2019-05-101-1/+3
* bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861)Victor Stinner2019-04-171-1/+1
* bpo-35755: shutil.which() uses os.confstr("CS_PATH") (GH-12858)Victor Stinner2019-04-171-1/+12
* bpo-36103: change default buffer size of shutil.copyfileobj() (GH-12115)Inada Naoki2019-03-021-1/+1
* bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry inste...Giampaolo Rodola2019-02-261-1/+1
* Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)Anthony Sottile2019-02-251-3/+1
* bpo-33671: allow setting shutil.copyfile() bufsize globally (GH-12016)Giampaolo Rodola2019-02-241-1/+3