| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-117151: increase default buffer size of shutil.copyfileobj() to 256k. (GH-... | morotti | 2024-10-04 | 1 | -1/+1 |
|
|
* | gh-86009: Fix solaris detection in `_USE_CP_SENDFILE` check (GH-124289) | Jakub Kulík | 2024-09-24 | 1 | -1/+1 |
|
|
* | bpo-41843: Reenable use of sendfile in shutil module on Solaris (GH-23893) | Jakub Kulík | 2024-09-19 | 1 | -3/+3 |
|
|
* | gh-123084: Turn `shutil.ExecError` into a deprecated alias of `RuntimeError` ... | Peter Bierma | 2024-08-21 | 1 | -3/+13 |
|
|
* | Fix typos in comments and docstring (#122720) | Xie Yanbo | 2024-08-07 | 1 | -1/+1 |
|
|
* | GH-73991: Use same signature for `shutil._rmtree_[un]safe()`. (#120517) | Barney Gale | 2024-06-18 | 1 | -37/+38 |
|
|
* | GH-89727: Fix `shutil.rmtree()` recursion error on deep trees (#119808) | Barney Gale | 2024-06-01 | 1 | -96/+66 |
|
|
* | GH-89727: Partially fix `shutil.rmtree()` recursion error on deep trees (#119... | Barney Gale | 2024-05-29 | 1 | -27/+11 |
|
|
* | docs: typo: tiny grammar change: "pointed by" -> "pointed to by" (#118411) | Andrew Zipperer | 2024-05-02 | 1 | -1/+1 |
|
|
* | bpo-18108: Adding dir_fd and follow_symlinks keyword args to shutil.chown (GH... | tahia | 2024-04-22 | 1 | -2/+10 |
|
|
* | gh-116401: Fix blocking os.fwalk() and shutil.rmtree() on opening a named pip... | Serhiy Storchaka | 2024-03-13 | 1 | -2/+2 |
|
|
* | gh-71052: Change Android's `sys.platform` from "linux" to "android" | Malcolm Smith | 2024-03-11 | 1 | -1/+2 |
|
|
* | gh-113803: Fix inaccurate documentation for shutil.move when dst is an existi... | Dai Wentao | 2024-02-04 | 1 | -5/+5 |
|
|
* | bpo-26791: Update shutil.move() to provide the same symlink move behavior as ... | Jeffrey Kintscher | 2023-12-27 | 1 | -1/+1 |
|
|
* | gh-113188: Fix shutil.copymode() on Windows (GH-113189) | Serhiy Storchaka | 2023-12-23 | 1 | -1/+6 |
|
|
* | bpo-35332: Handle os.close() errors in shutil.rmtree() (GH-23766) | Zackery Spytz | 2023-12-05 | 1 | -2/+18 |
|
|
* | gh-94692: Only catch OSError in shutil.rmtree() (#112756) | Serhiy Storchaka | 2023-12-05 | 1 | -2/+2 |
|
|
* | gh-81441: shutil.rmtree() FileNotFoundError race condition (GH-14064) | Jeffrey Kintscher | 2023-12-05 | 1 | -11/+34 |
|
|
* | gh-112645: remove deprecation warning for use of onerror in shutil.rmtree (#1... | Irit Katriel | 2023-12-03 | 1 | -5/+0 |
|
|
* | gh-109653: Defer importing `warnings` in several modules (#110286) | Alex Waygood | 2023-10-04 | 1 | -1/+1 |
|
|
* | gh-109590: Update shutil.which on Windows to prefer a PATHEXT extension on ex... | Charles Machalow | 2023-10-02 | 1 | -2/+10 |
|
|
* | gh-109748: Fix again venv test_zippath_from_non_installed_posix() (#110149) | Victor Stinner | 2023-09-30 | 1 | -1/+1 |
|
|
* | gh-99203: shutil.make_archive(): restore select CPython <= 3.10.5 behavior (G... | 6t8k | 2023-08-16 | 1 | -0/+4 |
|
|
* | gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055) | Steve Dower | 2023-05-30 | 1 | -0/+25 |
|
|
* | gh-82814: fix shutil access error on WSL (#103790) | Allan Lago | 2023-04-25 | 1 | -1/+1 |
|
|
* | gh-102950: Implement PEP 706 – Filter for tarfile.extractall (#102953) | Petr Viktorin | 2023-04-24 | 1 | -5/+12 |
|
|
* | gh-102828: set stacklevel on deprecation warning (#103422) | Irit Katriel | 2023-04-11 | 1 | -1/+1 |
|
|
* | GH-75586: Make shutil.which() on Windows more consistent with the OS (GH-103179) | Charles Machalow | 2023-04-04 | 1 | -41/+48 |
|
|
* | gh-102828: emit deprecation warning for onerror arg to shutil.rmtree (#102850) | Irit Katriel | 2023-03-21 | 1 | -0/+6 |
|
|
* | gh-102828: add onexc arg to shutil.rmtree. Deprecate onerror. (#102829) | Irit Katriel | 2023-03-19 | 1 | -44/+62 |
|
|
* | bpo-45975: Simplify some while-loops with walrus operator (GH-29347) | Nick Drozd | 2022-11-26 | 1 | -4/+1 |
|
|
* | gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548) | Charles Machalow | 2022-11-22 | 1 | -19/+6 |
|
|
* | bpo-38523: ignore_dangling_symlinks does not apply recursively (GH-22937) | Zackery Spytz | 2022-11-07 | 1 | -2/+3 |
|
|
* | gh-74696: Pass root_dir to custom archivers which support it (GH-94251) | Serhiy Storchaka | 2022-10-05 | 1 | -9/+11 |
|
|
* | gh-94844: Add pathlib support to shutil archive management (GH-94846) | Oleg Iarygin | 2022-07-20 | 1 | -0/+2 |
|
|
* | gh-74696: Do not change the current working directory in shutil.make_archive(... | Serhiy Storchaka | 2022-06-22 | 1 | -34/+65 |
|
|
* | shutil._copyfileobj_readinto: tiny speedup (#92377) | Lucinda May Phipps | 2022-05-20 | 1 | -1/+2 |
|
|
* | gh-88513: clarify shutil.copytree's dirs_exist_ok arg (GH-91434) | Jack DeVries | 2022-04-12 | 1 | -3/+5 |
|
|
* | bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365) | Serhiy Storchaka | 2022-03-09 | 1 | -5/+12 |
|
|
* | bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31... | Lital Natan | 2022-02-20 | 1 | -2/+10 |
|
|
* | bpo-42174: fallback to sane values if the columns or lines are 0 in get_termi... | Filipe Laíns | 2021-10-19 | 1 | -2/+2 |
|
|
* | bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ... | andrei kulakov | 2021-09-21 | 1 | -29/+30 |
|
|
* | bpo-33671 fix orphaned comment in shutil.copyfileobj (GH-27516) | Anthony Sottile | 2021-07-31 | 1 | -1/+1 |
|
|
* | bpo-43219: shutil.copyfile, raise a less confusing exception instead of IsADi... | andrei kulakov | 2021-07-10 | 1 | -21/+29 |
|
|
* | bpo-43650: Fix MemoryError on zip.read in shutil._unpack_zipfile for large fi... | Igor Bolshakov | 2021-05-17 | 1 | -10/+6 |
|
|
* | bpo-43743 add comment stating _USE_CP_SENDFILE should not be removed (#26024) | Giampaolo Rodola | 2021-05-10 | 1 | -0/+2 |
|
|
* | bpo-41718: subprocess imports grp and pwd on demand (GH-24987) | Victor Stinner | 2021-03-23 | 1 | -12/+14 |
|
|
* | bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001) | Winson Luk | 2021-03-02 | 1 | -0/+11 |
|
|
* | bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585) | Michal Čihař | 2020-11-10 | 1 | -1/+1 |
|
|
* | bpo-40592: shutil.which will not return None anymore if ; is the last char in... | Christopher Marchfelder | 2020-10-23 | 1 | -1/+6 |
|
|