summaryrefslogtreecommitdiffstats
path: root/Doc/library/shutil.rst
Commit message (Collapse)AuthorAgeFilesLines
* Merge from 3.5Berker Peksag2016-12-271-2/+2
|\
| * Move versionadded inside of the get_terminal_size() blockBerker Peksag2016-12-271-2/+2
| |
* | Merge spelling and grammar from 3.5Martin Panter2016-12-181-1/+1
|\ \ | |/
| * Fix spelling and grammar in code comments and documentationMartin Panter2016-12-181-1/+1
| |
* | Issue #14061: Misc fixes and cleanups in archiving code in shutil.Serhiy Storchaka2016-12-161-20/+24
|\ \ | |/ | | | | | | | | Imporoved the documentation and tests for make_archive() and unpack_archive(). Improved error handling when corresponding compress module is not available. Brake circular dependency between shutil and tarfile modules.
| * Issue #14061: Misc fixes and cleanups in archiving code in shutil.Serhiy Storchaka2016-12-161-20/+24
| | | | | | | | | | | | Imporoved the documentation and tests for make_archive() and unpack_archive(). Improved error handling when corresponding compress module is not available. Brake circular dependency between shutil and tarfile modules.
* | Merge doc fixups from 3.5Martin Panter2016-11-211-1/+1
|\ \ | |/
| * Change double hyphens (en dashes) to em (longer) dashesMartin Panter2016-11-211-1/+1
| |
* | Closes #27904: Improved logging statements to defer formatting until needed.Vinay Sajip2016-08-311-1/+1
|/
* Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting.Martin Panter2016-07-261-1/+3
| | | | Patch by Julien Palard.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+3
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-2/+2
|\
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
| | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
* | Issue #25161: Merge full stops from 3.4 into 3.5Martin Panter2015-10-101-1/+1
|\ \ | |/
| * Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
| |
| * Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple ↵Senthil Kumaran2015-06-151-1/+1
| | | | | | | | | | | | | | | | | | documentation typos. Related Issues: #issue21528 #issue24453
* | merge 3.4 (#22933)Benjamin Peterson2015-03-221-6/+3
|\ \ | |/
| * clarify behavior of shutil.move when destination exists (closes #22933)Benjamin Peterson2015-03-221-6/+3
| | | | | | | | Patch by Mike Short.
* | merge with 3.4Georg Brandl2014-10-311-1/+1
|\ \ | |/
| * Closes #22771: "verbose" is unused; deprecate it.Georg Brandl2014-10-311-1/+1
| |
* | merge with 3.4Georg Brandl2014-10-311-3/+13
|\ \ | |/
| * #22613: elaborate on arguments of shutil archival functions (thanks Jacques ↵Georg Brandl2014-10-311-3/+13
| | | | | | | | Ducasse)
* | Fix usage of the versionchanged directive.Berker Peksag2014-08-111-1/+1
| | | | | | | | Patch by Akira Li.
* | Issue #5411: Fixed version number.Serhiy Storchaka2014-08-061-1/+1
| |
* | Issue #5411: Added support for the "xztar" format in the shutil module.Serhiy Storchaka2014-08-061-1/+7
| |
* | #19840: Add copy_function to shutil.move.R David Murray2014-06-111-5/+17
| | | | | | | | Patch by Claudiu Popa.
* | Fix Issue #21528 - Fix documentation typosDonald Stufft2014-05-201-1/+1
| |
* | Issue19643 Fix whitespaceTim Golden2014-05-071-3/+3
| |
* | Issue19643 Add an example of shutil.rmtree which shows how to cope with ↵Tim Golden2014-05-071-0/+20
|/ | | | readonly files on Windows
* Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does ↵Victor Stinner2013-12-161-4/+0
| | | | not work on Windows
* Issue #18283: shutil.which() now supports bytes argument, not only text ↵Victor Stinner2013-12-161-0/+4
| | | | argument.
* Fix shutil.which() test for issue #16993.Serhiy Storchaka2013-01-221-1/+1
|\
| * Fix shutil.which() test for issue #16993.Serhiy Storchaka2013-01-221-1/+1
| |
* | Issue #16993: shutil.which() now preserves the case of the path and extensionSerhiy Storchaka2013-01-211-1/+1
|\ \ | |/ | | | | on Windows.
| * Issue #16993: shutil.which() now preserves the case of the path and extensionSerhiy Storchaka2013-01-211-1/+1
| | | | | | | | on Windows.
* | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-4/+3
| | | | | | | | Patch by Serhiy Storchaka.
* | Merge: use OSError instead of os.error in the docs.Andrew Svetlov2012-12-151-1/+1
|\ \ | |/
| * Use OSError instead of os.error in the docs.Andrew Svetlov2012-12-151-1/+1
| |
* | #1492704: Ensure and document backward compatibility of the changeHynek Schlawack2012-10-281-1/+2
| |
* | Closes #1492704: Make shutil.copyfile() raise a distinct SameFileErrorHynek Schlawack2012-10-071-1/+13
|/ | | | Patch by Atsuo Ishimoto.
* Cleanup/rewrite shutil docs regarding follow_symlinks and copying attributes.Larry Hastings2012-09-211-31/+84
|
* #1492704: Backout and wait for 3.4Hynek Schlawack2012-07-191-11/+1
|
* #1492704: Make shutil.copyfile() raise a distinct SameFileErrorHynek Schlawack2012-07-191-1/+11
| | | | Patch by Atsuo Ishimoto.
* Issue #15202: Additional documentation fixes inadvertently omittedLarry Hastings2012-07-151-41/+31
| | | | from previous checkin.
* Issue #15202: Consistently use the name "follow_symlinks" forLarry Hastings2012-07-151-1/+1
| | | | new parameters in os and shutil functions. Patch by Serhiy Storchaka.
* - Issue #15238: shutil.copystat now copies Linux "extended attributes".Larry Hastings2012-07-151-2/+3
|
* Fix typo in shutil docHynek Schlawack2012-06-271-1/+1
|
* Fix markupÉric Araujo2012-06-241-1/+1
|
* Add a single versionadded for a whole section instead of repeating for every ↵Georg Brandl2012-06-241-18/+4
| | | | function.