summaryrefslogtreecommitdiff
path: root/Lib/test/test_shutil.py
Commit message (Expand)AuthorAgeFilesLines
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #14061: Misc fixes and cleanups in archiving code in shutil.Serhiy Storchaka2016-12-161-7/+10
|\
| * Issue #28759: Fix the tests that fail with PermissionError when run asXavier de Gaye2016-12-131-1/+5
| * Issue #28662: Catch PermissionError in tests when spawning a non existent pro...Xavier de Gaye2016-11-141-1/+2
| * Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive.Serhiy Storchaka2016-10-231-5/+3
| |\
| | * Fixes tests broken by issue #27781.Steve Dower2016-09-081-3/+1
| | * Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-2/+2
* | | Issue #14061: Misc fixes and cleanups in archiving code in shutil.Serhiy Storchaka2016-12-161-51/+44
|/ /
* | Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive.Serhiy Storchaka2016-10-231-0/+13
|/
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-1/+1
* Issue #26801: shutil.get_terminal_size() now handles the case of stdout isSerhiy Storchaka2016-04-241-0/+29
* Fix shutil.get_terminal_size() error handlingVictor Stinner2016-04-191-0/+2
* Issue #25624: ZipFile now always writes a ZIP_STORED header for directorySerhiy Storchaka2015-11-221-0/+26
|\
| * Issue #25686: test_shutil no longer uses the distutils package for searchingSerhiy Storchaka2015-11-211-0/+26
| |\
| | * Issue #25607: Restore old distutils logging threshold after running tests thatSerhiy Storchaka2015-11-121-0/+26
| | |\
| | | * Fixed tests for shutil.make_archive() with relative base_name in the case whenSerhiy Storchaka2015-09-081-2/+2
| | | |\
| | | * \ Issue #24982: shutil.make_archive() with the "zip" format now adds entriesSerhiy Storchaka2015-09-081-6/+31
| | | |\ \
| | | * \ \ Issue #25018: Fixed testing shutil.make_archive() with relative base_name onSerhiy Storchaka2015-09-071-9/+19
| | | |\ \ \
| | | * \ \ \ Explicitly test archive name in shutil.make_archive() tests to expose failureSerhiy Storchaka2015-09-071-11/+11
| | | |\ \ \ \
| | | * \ \ \ \ Fix, refactor and extend tests for shutil.make_archive().Serhiy Storchaka2015-09-061-89/+83
| | | |\ \ \ \ \
| | | * \ \ \ \ \ Use support.change_cwd() in tests.Serhiy Storchaka2015-09-061-0/+26
| | | |\ \ \ \ \ \
| | | | * \ \ \ \ \ Issue #21697: shutil.copytree() now correctly handles symbolic links that poi...Berker Peksag2015-07-251-0/+26
| | | | |\ \ \ \ \ \
| | | | | * \ \ \ \ \ Issue #21775: shutil.copytree(): fix crash when copying to VFATBerker Peksag2014-12-101-0/+15
| | | | | |\ \ \ \ \ \
| | | | | * \ \ \ \ \ \ Issue #21280: Fixed a bug in shutil.make_archive() when create an archive ofSerhiy Storchaka2014-11-281-0/+15
| | | | | |\ \ \ \ \ \ \
| | | | | * \ \ \ \ \ \ \ Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__.Berker Peksag2014-11-011-0/+18
| | | | | |\ \ \ \ \ \ \ \
| | | | | * \ \ \ \ \ \ \ \ Issue #20056: Fixed deprecation warning about bytes path in test_shutil onSerhiy Storchaka2014-08-071-0/+26
| | | | | |\ \ \ \ \ \ \ \ \
| | | | | | * | | | | | | | | Issue #5411: Added support for the "xztar" format in the shutil module.Serhiy Storchaka2014-08-061-0/+8
| | | | | | * | | | | | | | | #19840: Add copy_function to shutil.move.R David Murray2014-06-111-0/+18
* | | | | | | | | | | | | | | Issue #25624: ZipFile now always writes a ZIP_STORED header for directorySerhiy Storchaka2015-11-221-0/+23
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Issue #25686: test_shutil no longer uses the distutils package for searchingSerhiy Storchaka2015-11-211-9/+7
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Issue #25607: Restore old distutils logging threshold after running tests thatSerhiy Storchaka2015-11-121-1/+1
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | Fixed tests for shutil.make_archive() with relative base_name in the case whenSerhiy Storchaka2015-09-081-2/+2
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Issue #24982: shutil.make_archive() with the "zip" format now adds entriesSerhiy Storchaka2015-09-081-6/+31
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Issue #25018: Fixed testing shutil.make_archive() with relative base_name onSerhiy Storchaka2015-09-071-9/+19
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Explicitly test archive name in shutil.make_archive() tests to expose failureSerhiy Storchaka2015-09-071-11/+11
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Fix, refactor and extend tests for shutil.make_archive().Serhiy Storchaka2015-09-061-89/+83
|/ / / / / / /
* | | | | | | Use support.change_cwd() in tests.Serhiy Storchaka2015-09-061-37/+7
|/ / / / / /
* | | | | | Issue #21697: shutil.copytree() now correctly handles symbolic links that poi...Berker Peksag2015-07-251-0/+20
| |_|_|_|/ |/| | | |
* | | | | Issue #21775: shutil.copytree(): fix crash when copying to VFATBerker Peksag2014-12-101-0/+15
| |_|_|/ |/| | |
* | | | Issue #21280: Fixed a bug in shutil.make_archive() when create an archive ofSerhiy Storchaka2014-11-281-0/+15
| |_|/ |/| |
* | | Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__.Berker Peksag2014-11-011-0/+18
|/ /
* | Issue #20056: Fixed deprecation warning about bytes path in test_shutil onSerhiy Storchaka2014-08-071-1/+4
|/
* Issue #19856: shutil.move() failed to move a directory to other directorySerhiy Storchaka2014-02-111-0/+9
|\
| * Issue #19856: shutil.move() failed to move a directory to other directorySerhiy Storchaka2014-02-111-0/+9
* | sort os.listxattr results before comparing it to avoid depending on the ...Gregory P. Smith2014-01-171-1/+1
|\ \ | |/
| * sort os.listxattr results before comparing it to avoid depending on theGregory P. Smith2014-01-171-1/+1
* | Issue #20055: Fix test_shutil under Windows with symlink privileges held.Antoine Pitrou2014-01-011-13/+19
|\ \ | |/
| * Issue #20055: Fix test_shutil under Windows with symlink privileges held.Antoine Pitrou2014-01-011-13/+19
| * Fix DeprecationWarnings in test suiteAntoine Pitrou2013-12-211-7/+7
* | Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does ...Victor Stinner2013-12-161-11/+2