Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
0644d2629e406eef1a4fe425d519640d7460336d
/
Lib
/
test
/
test_shutil.py
ef5c24a
Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive.
by Serhiy Storchaka
· 9 years ago
37c02ac
Issue #25624: ZipFile now always writes a ZIP_STORED header for directory
by Serhiy Storchaka
· 10 years ago
1a31cba
Issue #25686: test_shutil no longer uses the distutils package for running
by Serhiy Storchaka
· 10 years ago
0d64940
Issue #25607: Restore old distutils logging threshold after running tests that
by Serhiy Storchaka
· 10 years ago
672237e
Fixed tests for shutil.make_archive() with relative base_name in the case when
by Serhiy Storchaka
· 10 years ago
fe45f65
Issue #24982: shutil.make_archive() with the "zip" format now adds entries
by Serhiy Storchaka
· 10 years ago
ad7b0cd
Issue #25018: Fixed testing shutil.make_archive() with relative base_name on
by Serhiy Storchaka
· 10 years ago
0ecf462
Explicitly test archive name in shutil.make_archive() tests to expose failure
by Serhiy Storchaka
· 10 years ago
04861dc
Fix, refactor and extend tests for shutil.make_archive().
by Serhiy Storchaka
· 10 years ago
7c7b4b5
Backport support.change_cwd() and use it in tests.
by Serhiy Storchaka
· 10 years ago
c354285
Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of
by Serhiy Storchaka
· 11 years ago
a4b9c87
Issue #19856: shutil.move() failed to move a directory to other directory
by Serhiy Storchaka
· 11 years ago
1f70221
Issue #19572: More silently skipped tests explicitly skipped.
by Zachary Ware
· 12 years ago
32e23e7
Issue #18702: All skipped tests now reported as skipped.
by Serhiy Storchaka
· 12 years ago
acdc56d
Issue #14662: Prevent shutil failures on OS X when destination does not
by Ned Deily
· 13 years ago
e7329f4
Guard shutil._make_archive against a logger=None argument.
by Éric Araujo
· 14 years ago
58d6b1b
Backport fix for issue #10684 from 3.x
by Ronald Oussoren
· 14 years ago
2623a37
Merged revisions 86596 via svnmerge from
by Ezio Melotti
· 15 years ago
1c4253d
Merged revisions 86235 via svnmerge from
by Éric Araujo
· 15 years ago
99d848b
Merged revisions 85503 via svnmerge from
by Antoine Pitrou
· 15 years ago
62c3c79
Replace deprecated fail* methods with the equivalent assert* ones.
by Ezio Melotti
· 15 years ago
38f8122
Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fills
by Tarek Ziadé
· 15 years ago
e593fad
removed ztar support in shutil.make_archive
by Tarek Ziadé
· 15 years ago
945a8ba
Cleanup some test cases using check_warnings and check_py3k_warnings.
by Florent Xicluna
· 15 years ago
48cc8dc
added make_archive (and secondary APIs) to shutil
by Tarek Ziadé
· 15 years ago
4ac6b93
Make test_shutil clean up after itself
by Antoine Pitrou
· 16 years ago
5c8da86
convert usage of fail* to assert*
by Benjamin Peterson
· 16 years ago
1fc0231
Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an
by Antoine Pitrou
· 16 years ago
9c6fc51
fix test_shutil on ZFS #5676
by Benjamin Peterson
· 16 years ago
096c3ad
make destinsrc private
by Benjamin Peterson
· 16 years ago
707c593
Issue #2047: shutil.move() could believe that its destination path was
by Antoine Pitrou
· 17 years ago
e78fbcc
#2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.
by Georg Brandl
· 17 years ago
493894c
Issue 1577: shutil.move() where destination is a directory was doing a
by Sean Reifscheider
· 17 years ago
5235398
#1669: don't allow shutil.rmtree() to be called on a symlink.
by Georg Brandl
· 18 years ago
547867e
Another fix for test_shutil. Martin pointed out that it breaks some build bots
by Christian Heimes
· 18 years ago
044d709
Fixed bug #1470
by Christian Heimes
· 18 years ago
b2dd1a3
test_copytree_simple(): This was leaving behind two new temp
by Tim Peters
· 19 years ago
6458452
Whitespace normalization.
by Tim Peters
· 19 years ago
4e67838
Don't copy directory stat times in shutil.copytree on Windows Fixes #1525866.
by Martin v. Löwis
· 19 years ago
8e0d494
Implement os.{chdir,rename,rmdir,remove} using Win32 directly.
by Martin v. Löwis
· 19 years ago
6b220b0
Use os.geteuid() for checking whether we are root, as suggested by
by Johannes Gijsbers
· 21 years ago
b8b09d0
SF bug #1076467: don't run test_on_error as root, as the permission
by Johannes Gijsbers
· 21 years ago
8e6f2de
Bug #1071513: don't test on Cygwin, as chmod doesn't work reliably there
by Johannes Gijsbers
· 21 years ago
4590c00
test_on_error(): Rewrite so it works on WinXP too. Unsure about 95/98/ME.
by Tim Peters
· 21 years ago
ef5ffc4
Bug #1048941: shutil.rmtree error handling was always broken
by Johannes Gijsbers
· 21 years ago
d60e92a
Document not-completely-obvious behavior in a test.
by Johannes Gijsbers
· 21 years ago
6812871
Unwrap too-smart loop: we can't use `src` for both hard and symbolic links.
by Johannes Gijsbers
· 21 years ago
46f1459
Raise an exception when src and dst refer to the same file via a hard link or a
by Johannes Gijsbers
· 21 years ago
8cec3ab
- Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affects
by Guido van Rossum
· 21 years ago
1c3fa18
shutil.move() will raise an exception when trying to move a directory into
by Brett Cannon
· 21 years ago
21d3a32
Combine the functionality of test_support.run_unittest()
by Walter Dörwald
· 22 years ago
7fc2cca
A very minimal start to a test of the shutil module.
by Barry Warsaw
· 23 years ago