1. fe45f65 Issue #24982: shutil.make_archive() with the "zip" format now adds entries by Serhiy Storchaka · 9 years ago
  2. c354285 Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of by Serhiy Storchaka · 10 years ago
  3. a4b9c87 Issue #19856: shutil.move() failed to move a directory to other directory by Serhiy Storchaka · 11 years ago
  4. b898b4f use with statement to ensure zipfile is always closed (closes #20102) by Benjamin Peterson · 11 years ago
  5. 3196529 Fix wrong way of adding Error information in shutil.copytree. by Georg Brandl · 12 years ago
  6. acdc56d Issue #14662: Prevent shutil failures on OS X when destination does not by Ned Deily · 12 years ago
  7. 0429500 Add missing name in shutil.__all__ by Éric Araujo · 13 years ago
  8. e7329f4 Guard shutil._make_archive against a logger=None argument. by Éric Araujo · 13 years ago
  9. 58d6b1b Backport fix for issue #10684 from 3.x by Ronald Oussoren · 13 years ago
  10. 6e52cf3 Merged revisions 87277 via svnmerge from by Éric Araujo · 14 years ago
  11. 31a673d removed non needed lines by Tarek Ziadé · 14 years ago
  12. 38f8122 Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fills by Tarek Ziadé · 14 years ago
  13. 62e17ad shutil: removed unused import and fixed attributes names in _call_external_zip by Tarek Ziadé · 14 years ago
  14. e593fad removed ztar support in shutil.make_archive by Tarek Ziadé · 14 years ago
  15. 8a12f94 Fixed #8463: added missing reference to bztar in shutil's documentation. by Tarek Ziadé · 14 years ago
  16. f1c28b7 few pep8 fixes by Tarek Ziadé · 14 years ago
  17. 513d9ae Issue #7512: shutil.copystat() could raise an OSError when the filesystem by Antoine Pitrou · 14 years ago
  18. 1f3b4e1 Fix some py3k warnings in the standard library. by Florent Xicluna · 15 years ago
  19. 2900c44 completed the __all__ list and changed the module doctest by Tarek Ziadé · 15 years ago
  20. 48cc8dc added make_archive (and secondary APIs) to shutil by Tarek Ziadé · 15 years ago
  21. a663a37 only test for named pipe when os.stat doesn't raise #6209 by Benjamin Peterson · 15 years ago
  22. 1fc0231 Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an by Antoine Pitrou · 15 years ago
  23. 096c3ad make destinsrc private by Benjamin Peterson · 16 years ago
  24. 707c593 Issue #2047: shutil.move() could believe that its destination path was by Antoine Pitrou · 16 years ago
  25. 9fcd4b3 #3134: shutil referenced undefined WindowsError symbol by Antoine Pitrou · 16 years ago
  26. e78fbcc #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. by Georg Brandl · 16 years ago
  27. 493894c Issue 1577: shutil.move() where destination is a directory was doing a by Sean Reifscheider · 17 years ago
  28. 5235398 #1669: don't allow shutil.rmtree() to be called on a symlink. by Georg Brandl · 17 years ago
  29. 382abef Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() by Martin v. Löwis · 18 years ago
  30. 4e67838 Don't copy directory stat times in shutil.copytree on Windows Fixes #1525866. by Martin v. Löwis · 18 years ago
  31. 7a3fd89 Bug #1472949: stringify IOErrors in shutil.copytree when appending by Georg Brandl · 18 years ago
  32. 4ce69a5 No need to import exceptions, they are builtins by Neal Norwitz · 19 years ago
  33. a1be88e patch [ 1242454 ] shutil.copytree() quits too soon after an error. by Georg Brandl · 19 years ago
  34. 926d45b shutil.copytree: move copystat call for the directory after the loop by Johannes Gijsbers · 20 years ago
  35. e4172ea Patch #1094015: by Johannes Gijsbers · 20 years ago
  36. ef5ffc4 Bug #1048941: shutil.rmtree error handling was always broken by Johannes Gijsbers · 20 years ago
  37. 7db385e Rewrite rmtree using os.walk to fix bug #1025127: by Johannes Gijsbers · 20 years ago
  38. f9a098e Catch OSError raised when src or dst argument to os.path.samefile doesn't exist. by Johannes Gijsbers · 20 years ago
  39. 46f1459 Raise an exception when src and dst refer to the same file via a hard link or a by Johannes Gijsbers · 20 years ago
  40. 4a2ccdf - Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affects by Guido van Rossum · 20 years ago
  41. 1c3fa18 shutil.move() will raise an exception when trying to move a directory into by Brett Cannon · 20 years ago
  42. a4c93b6 Fix SF bug #691276, shutil.copytree documentation bug by Neal Norwitz · 22 years ago
  43. 234d9a9 rmtree(): Make implementation agree with documentation (both latex and by Barry Warsaw · 22 years ago
  44. 66d16ba - squashed bare except in rmtree() by Just van Rossum · 22 years ago
  45. 2b9bfb3 Added new move() function to __all__. by Raymond Hettinger · 22 years ago
  46. e9ce0b0 Patch #448038: Add move(). Report errors from copytree as in shutil.Error. by Martin v. Löwis · 22 years ago
  47. 57e7945 shutil.copyfile(src,dst) was clobbering the file when the src and dst were by Raymond Hettinger · 22 years ago
  48. 294bbf3 Replace obsolete stat module constants with by Walter Dörwald · 22 years ago
  49. f13eb55 Replace boolean test with is None. by Raymond Hettinger · 22 years ago
  50. 0de6580 bunch more __all__ lists by Skip Montanaro · 24 years ago
  51. 0c94724 Patch #103342: Make shutil.copytree more useful under Jython. by Tim Peters · 24 years ago
  52. 495ad3c Whitespace normalization. by Tim Peters · 24 years ago
  53. 42bb8b3 apply patch #100868 from Moshe Zadka: by Greg Stein · 24 years ago
  54. 5fa3886 Fred Gansevles <gansevle@cs.utwente.nl>: by Fred Drake · 24 years ago
  55. e7b146f The third and final doc-string sweep by Ka-Ping Yee. by Guido van Rossum · 25 years ago
  56. 959fa01 Typo in comment (on Mac, it's the *resource* fork that's not copied, by Guido van Rossum · 25 years ago
  57. 83c03e2 Add import sys, needed by reference to sys.exc_info() in rmtree(). by Guido van Rossum · 26 years ago
  58. e1bf7e8 Change the order of the utime() and the chmod() call in copystat(). by Guido van Rossum · 26 years ago
  59. d832f9e Fix append() calls with more than 1 argument. by Guido van Rossum · 26 years ago
  60. 96372a2 ST_MODE should be ST_MTIME in utime call in copystat. Thanks to Mike Orr. by Guido van Rossum · 26 years ago
  61. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  62. d767329 Added rmtree(), to recursively remove a directory tree. by Guido van Rossum · 27 years ago
  63. 9d0a3df Transformed comments to doc strings. Added symlinks option to copytree. by Guido van Rossum · 27 years ago
  64. a2baf46 Reindented at 4 spaces. by Guido van Rossum · 27 years ago
  65. 5980845 Add feature to copy(), copy2(): dst may be a directory. by Guido van Rossum · 27 years ago
  66. 277206b Improvements to copyfile(): open the files in binary mode, and close by Guido van Rossum · 27 years ago
  67. c96207a posix -> os by Guido van Rossum · 32 years ago
  68. 784ca6c path.cat --> join by Guido van Rossum · 33 years ago
  69. c636014 Initial revision by Guido van Rossum · 34 years ago