- 04 Kas, 2009 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76101 | antoine.pitrou | 2009-11-04 01:50:26 +0100 (mer., 04 nov. 2009) | 3 lines Make test_shutil clean up after itself ........
-
- 29 Ock, 2009 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69100 | antoine.pitrou | 2009-01-29 21:19:34 +0100 (jeu., 29 janv. 2009) | 5 lines Issue #2047: shutil.move() could believe that its destination path was inside its source path if it began with the same letters (e.g. "src" vs. "src.new"). ........
-
- 05 Tem, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
This is a new feature, but Barry authorized adding it in the beta period.
-
- 18 Mar, 2008 1 kayıt (commit)
-
-
Sean Reifscheider yazdı
copy, now it is doing a os.rename() if it's on the same file-system.
-
- 20 Ock, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 20 Kas, 2007 2 kayıt (commit)
-
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
- 10 Agu, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
directories each time it ran, at least on Windows. Several changes: explicitly closed all files; wrapped long lines; stopped suppressing errors when removing a file or directory fails (removing /shouldn't/ fail!); and changed what appeared to be incorrect usage of os.removedirs() (that doesn't remove empty directories at and /under/ the given path, instead it must be given an empty leaf directory and then deletes empty directories moving /up/ the path -- could be that the conceptually simpler shutil.rmtree() was really actually intended here).
-
- 31 Tem, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 30 Tem, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes #1525866.
-
- 04 May, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 12 Ara, 2004 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
Michael Hudson.
-
- 06 Ara, 2004 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
errors don't get provoked that way. Also add a bunch of cross-references to bugs.
-
- 23 Kas, 2004 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
(http://www.cygwin.com/faq/faq_3.html#SEC41). Also check whether onerror has actually been called so this test will fail on assertion instead of on trying to chmod a non-existent file.
-
- 01 Kas, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 31 Eki, 2004 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
Rewrite rmtree again, this time without os.walk(). Error handling had been broken since Python 2.3, and the os.walk() version inherited this.
-
- 11 Eyl, 2004 1 kayıt (commit)
-
-
Johannes Gijsbers yazdı
-
- 14 Agu, 2004 2 kayıt (commit)
-
-
Johannes Gijsbers yazdı
-
Johannes Gijsbers yazdı
symbolic link (bug #851123 / patch #854853, thanks Gregory Ball).
-
- 14 Tem, 2004 1 kayıt (commit)
-
-
Guido van Rossum yazdı
the documented behavior: the function passed to the onerror() handler can now also be os.listdir. [I could've sworn I checked this in, but apparently I didn't, or it got lost???]
-
- 19 Haz, 2004 1 kayıt (commit)
-
-
Brett Cannon yazdı
itself. Closes bug #919012 . Thanks Johannes Gijsbers.
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 24 Ock, 2003 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-