1. 9eb3d54 bpo-37834: Normalise handling of reparse points on Windows (GH-15370) by Steve Dower · 5 years ago
  2. c30c869 bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287) by Miss Islington (bot) · 5 years ago
  3. 7fe81ce bpo-37421: Fix test_shutil: don't leak temporary files (GH-14416) by Miss Islington (bot) · 5 years ago
  4. 413d955 bpo-36610: shutil.copyfile(): use sendfile() on Linux only (GH-13675) by Giampaolo Rodola · 5 years ago
  5. 79efbb7 bpo-24538: Fix bug in shutil involving the copying of xattrs to read-only files. (PR-13212) by Olexa Bilaniuk · 5 years ago
  6. 228a3c9 bpo-35755: shutil.which() uses os.confstr("CS_PATH") (GH-12858) by Victor Stinner · 5 years ago
  7. c606a9c bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry instead of path str (GH-11997) by Giampaolo Rodola · 5 years ago
  8. 8377cd4 Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) by Anthony Sottile · 5 years ago
  9. ef110b1 bpo-35704: Prevent test_shutil fail result when AIX is 32-bit and MAXDATA < 0x20000000 (GH-11500) by Michael Felt · 5 years ago
  10. 5680f65 bpo-18283: Add support for bytes to shutil.which (GH-11818) by Cheryl Sabella · 5 years ago
  11. 9e00d9e bpo-20849: add dirs_exist_ok arg to shutil.copytree (patch by Josh Bronson) by jab · 6 years ago
  12. dc525f4 bpo-35458: Fix test_shutil.test_disk_usage() (GH-11111) by Victor Stinner · 6 years ago
  13. c8c0249 bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372) by Joe Pamer · 6 years ago
  14. e78734d bpo-34661: Fix test skipping call. (GH-9266) by Benjamin Peterson · 6 years ago
  15. a710ebd closes bpo-34661: Fix test_shutil if unzip doesn't support -t. (GH-9262) by Benjamin Peterson · 6 years ago
  16. 937ee9e Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919) by Victor Stinner · 6 years ago
  17. 8fbbdf0 bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800) by Victor Stinner · 6 years ago
  18. c7f02a9 bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows (#7681) by Giampaolo Rodola · 6 years ago
  19. 4a172cc bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win) (#7160) by Giampaolo Rodola · 6 years ago
  20. b21d155 bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930) by Serhiy Storchaka · 6 years ago
  21. 92c2ca7 bpo-28759: Skip some tests on PermissionError raised by Android (GH-4350) by xdegaye · 7 years ago
  22. d4d79bc bpo-28564: Use os.scandir() in shutil.rmtree(). (#4085) by Serhiy Storchaka · 7 years ago
  23. 529746c Make test_shutil test_disk_usage not depend on the cwd fs (#2597) by Gregory P. Smith · 7 years ago
  24. a12df7b bpo-30218: support path-like objects in shutil.unpack_archive() (GH-1367) by Jelle Zijlstra · 7 years ago
  25. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  26. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  27. 9bb6fe5 Issue #14061: Misc fixes and cleanups in archiving code in shutil. by Serhiy Storchaka · 8 years ago
  28. 20cdffd Issue #14061: Misc fixes and cleanups in archiving code in shutil. by Serhiy Storchaka · 8 years ago
  29. 3a4e989 Issue #28759: Fix the tests that fail with PermissionError when run as by Xavier de Gaye · 8 years ago
  30. 38c8b7d Issue #28662: Catch PermissionError in tests when spawning a non existent program by Xavier de Gaye · 8 years ago
  31. 7fc92bb Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. by Serhiy Storchaka · 8 years ago
  32. 666de77 Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. by Serhiy Storchaka · 8 years ago
  33. e58571b Fixes tests broken by issue #27781. by Steve Dower · 8 years ago
  34. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  35. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  36. d30829d Issue #26801: shutil.get_terminal_size() now handles the case of stdout is by Serhiy Storchaka · 8 years ago
  37. 119ebb7 Fix shutil.get_terminal_size() error handling by Victor Stinner · 8 years ago
  38. 6e3d2ba Issue #25624: ZipFile now always writes a ZIP_STORED header for directory by Serhiy Storchaka · 9 years ago
  39. 8bc792a Issue #25624: ZipFile now always writes a ZIP_STORED header for directory by Serhiy Storchaka · 9 years ago
  40. efd83fe Issue #25686: test_shutil no longer uses the distutils package for searching by Serhiy Storchaka · 9 years ago
  41. b42de2f Issue #25686: test_shutil no longer uses the distutils package for searching by Serhiy Storchaka · 9 years ago
  42. 2f85555 Issue #25607: Restore old distutils logging threshold after running tests that by Serhiy Storchaka · 9 years ago
  43. 8402324 Issue #25607: Restore old distutils logging threshold after running tests that by Serhiy Storchaka · 9 years ago
  44. 050a143 Fixed tests for shutil.make_archive() with relative base_name in the case when by Serhiy Storchaka · 9 years ago
  45. 5558d4f Fixed tests for shutil.make_archive() with relative base_name in the case when by Serhiy Storchaka · 9 years ago
  46. d941d7a Issue #24982: shutil.make_archive() with the "zip" format now adds entries by Serhiy Storchaka · 9 years ago
  47. 2504cec Issue #24982: shutil.make_archive() with the "zip" format now adds entries by Serhiy Storchaka · 9 years ago
  48. ae0d752 Issue #25018: Fixed testing shutil.make_archive() with relative base_name on by Serhiy Storchaka · 9 years ago
  49. eba8fee Issue #25018: Fixed testing shutil.make_archive() with relative base_name on by Serhiy Storchaka · 9 years ago
  50. 8c85a20 Explicitly test archive name in shutil.make_archive() tests to expose failure by Serhiy Storchaka · 9 years ago
  51. a091a82 Explicitly test archive name in shutil.make_archive() tests to expose failure by Serhiy Storchaka · 9 years ago
  52. 2ba3980 Fix, refactor and extend tests for shutil.make_archive(). by Serhiy Storchaka · 9 years ago
  53. 527ef07 Fix, refactor and extend tests for shutil.make_archive(). by Serhiy Storchaka · 9 years ago
  54. 5fbadb6 Use support.change_cwd() in tests. by Serhiy Storchaka · 9 years ago
  55. 2a23adf Use support.change_cwd() in tests. by Serhiy Storchaka · 9 years ago
  56. 5a294d8 Issue #21697: shutil.copytree() now correctly handles symbolic links that point to directories. by Berker Peksag · 9 years ago
  57. 940d69d Issue #21697: shutil.copytree() now correctly handles symbolic links that point to directories. by Berker Peksag · 9 years ago
  58. 5de4a3c Issue #21775: shutil.copytree(): fix crash when copying to VFAT by Berker Peksag · 10 years ago
  59. 884afd9 Issue #21775: shutil.copytree(): fix crash when copying to VFAT by Berker Peksag · 10 years ago
  60. 0a99b2a Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of by Serhiy Storchaka · 10 years ago
  61. 9a4fc19 Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of by Serhiy Storchaka · 10 years ago
  62. 8912270 Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__. by Berker Peksag · 10 years ago
  63. 8083cd6 Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__. by Berker Peksag · 10 years ago
  64. 304e542 Issue #20056: Fixed deprecation warning about bytes path in test_shutil on by Serhiy Storchaka · 10 years ago
  65. 41ad77c Issue #20056: Fixed deprecation warning about bytes path in test_shutil on by Serhiy Storchaka · 10 years ago
  66. 1121377 Issue #5411: Added support for the "xztar" format in the shutil module. by Serhiy Storchaka · 10 years ago
  67. 6ffface #19840: Add copy_function to shutil.move. by R David Murray · 10 years ago
  68. 6a45021 Issue #19856: shutil.move() failed to move a directory to other directory by Serhiy Storchaka · 10 years ago
  69. 3a308b9 Issue #19856: shutil.move() failed to move a directory to other directory by Serhiy Storchaka · 10 years ago
  70. 4cfbac8 sort os.listxattr results before comparing it to avoid depending on the ordering of the directory information in the underlying filesystem. by Gregory P. Smith · 11 years ago
  71. 1093bf2 sort os.listxattr results before comparing it to avoid depending on the by Gregory P. Smith · 11 years ago
  72. b672888 Issue #20055: Fix test_shutil under Windows with symlink privileges held. by Antoine Pitrou · 11 years ago
  73. 3f48ac9 Issue #20055: Fix test_shutil under Windows with symlink privileges held. by Antoine Pitrou · 11 years ago
  74. 492b989 Fix DeprecationWarnings in test suite by Antoine Pitrou · 11 years ago
  75. 1d006a2 Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does not work on Windows by Victor Stinner · 11 years ago
  76. fffb96b Issue #18283: shutil.which() now supports bytes argument, not only text argument. by Victor Stinner · 11 years ago
  77. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  78. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  79. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  80. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  81. 9c7eb55 Stop using assertEquals. by Brett Cannon · 11 years ago
  82. 566c470 Issue #1666318: Add a test that shutil.copytree() retains directory permissions. by Antoine Pitrou · 11 years ago
  83. ac60160 Issue #1666318: Add a test that shutil.copytree() retains directory permissions. by Antoine Pitrou · 11 years ago
  84. cf67b2a Merge #15415 from 3.3 by Nick Coghlan · 11 years ago
  85. 5517596 Close #15415: Factor out temp dir helpers to test.support by Nick Coghlan · 11 years ago
  86. 3e9a9ae Update various test modules to use unittest.main() for test discovery by Brett Cannon · 11 years ago
  87. 12516e2 Issue #17746: Skip test_shutil.test_non_matching_mode when run as root or by Serhiy Storchaka · 11 years ago
  88. 5758fa78 Issue #17746: Skip test_shutil.test_non_matching_mode when run as root or by Serhiy Storchaka · 11 years ago
  89. 99c56e8 Remove unused import by Barry Warsaw · 11 years ago
  90. 20c08c8 Remove unused import. by Barry Warsaw · 11 years ago
  91. ecaefcf - Issue #17012: shutil.which() no longer fallbacks to the PATH environment by Barry Warsaw · 11 years ago
  92. 618738b - Issue #17012: shutil.which() no longer fallbacks to the PATH environment by Barry Warsaw · 11 years ago
  93. 4cd7b9c #17076: Make copying of xattrs more permissive of missing FS support by Hynek Schlawack · 11 years ago
  94. 0beab05 #17076: Make copying of xattrs more permissive of missing FS support by Hynek Schlawack · 11 years ago
  95. dec4de2 Fix pathext test for shutil.which() which was by Serhiy Storchaka · 11 years ago
  96. d70127a Fix pathext test for shutil.which() which was by Serhiy Storchaka · 11 years ago
  97. e9a6360 Issue #16957: shutil.which() no longer searches a bare file name in the by Serhiy Storchaka · 11 years ago
  98. 8bea200 Issue #16957: shutil.which() no longer searches a bare file name in the by Serhiy Storchaka · 11 years ago
  99. 2ba095c Fix shutil.which() test for issue #16993. by Serhiy Storchaka · 12 years ago
  100. 80c88f4 Fix shutil.which() test for issue #16993. by Serhiy Storchaka · 12 years ago