Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Docs for issue #22570. (Merge 3.5->3.6) | Guido van Rossum | 2016-01-06 | 1 | -0/+22 |
|\ | |||||
| * | Cross-reference os.DirEntry and pathlib.Path for issue #22570. | Guido van Rossum | 2016-01-06 | 1 | -0/+4 |
| | | |||||
| * | Add versionadded (3.4.5) to docs for issue #22570. (Merge 3.4->3.5) | Guido van Rossum | 2016-01-06 | 1 | -0/+1 |
| |\ | |||||
| | * | Add versionadded (3.4.5) to docs for issue #22570. | Guido van Rossum | 2016-01-06 | 1 | -0/+1 |
| | | | |||||
| * | | Docs for issue #22570. (Merge 3.4->3.5) | Guido van Rossum | 2016-01-06 | 1 | -0/+17 |
| |\ \ | | |/ | |||||
| | * | Docs for issue #22570. | Guido van Rossum | 2016-01-06 | 1 | -0/+17 |
| | | | |||||
* | | | Issue #25210: Change error message of do_richcompare() | Victor Stinner | 2015-10-14 | 1 | -1/+1 |
|/ / | | | | | | | | | | | | | | | | | | | | | | | Don't add parenthesis to type names. Add also quotes around the type names. Before: TypeError: unorderable types: int() < NoneType() After: TypeError: '<' not supported between instances of 'int' and 'NoneType' | ||||
* | | Close #23904: fix pathlib documentation misleadingly mentioning that bytes ↵ | Antoine Pitrou | 2015-04-11 | 1 | -2/+2 |
|\ \ | |/ | | | | | objects are accepted in the PurePath constructor | ||||
| * | Close #23904: fix pathlib documentation misleadingly mentioning that bytes ↵ | Antoine Pitrou | 2015-04-11 | 1 | -2/+2 |
| | | | | | | | | objects are accepted in the PurePath constructor | ||||
* | | Issue #19777: Provide a home() classmethod on Path objects. | Antoine Pitrou | 2015-01-12 | 1 | -0/+11 |
| | | | | | | | | Contributed by Victor Salgado and Mayank Tripathi. | ||||
* | | Issue #19776: Add a expanduser() method on Path objects. | Antoine Pitrou | 2014-12-30 | 1 | -3/+12 |
| | | | | | | | | Patch by Serhiy. | ||||
* | | Closes #20218: Added convenience methods read_text/write_text and read_bytes/ | Georg Brandl | 2014-10-01 | 1 | -0/+61 |
| | | | | | | | | | | | | write_bytes to pathlib.Path objects. Thanks to Christopher Welborn and Ram Rachum for original patches. | ||||
* | | Revert #22251 | Berker Peksag | 2014-09-27 | 1 | -3/+0 |
|\ \ | |/ | |||||
| * | Revert #22251 | Berker Peksag | 2014-09-27 | 1 | -3/+0 |
| | | |||||
* | | Issue #22251: Fix ReST markup to avoid errors building docs. | Berker Peksag | 2014-09-27 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #22251: Fix ReST markup to avoid errors building docs. | Berker Peksag | 2014-09-27 | 1 | -0/+3 |
| | | |||||
| * | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -0/+30 |
| | | |||||
* | | - Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic | Barry Warsaw | 2014-08-05 | 1 | -1/+11 |
| | | | | | | | | | | | | | | | | | | | | | | `mkdir -p` and `os.makedirs()` functionality. When true, ignore FileExistsErrors. Patch by Berker Peksag. (With minor cleanups, additional tests, doc tweaks, etc. by Barry) Also: * Remove some unused imports in test_pathlib.py reported by pyflakes. | ||||
* | | Issue #19775: Add a samefile() method to pathlib Path objects. | Antoine Pitrou | 2014-05-13 | 1 | -0/+19 |
| | | | | | | | | Initial patch by Vajrasky Kok. | ||||
* | | Issue #20765: Add missing documentation for PurePath.with_name() and ↵ | Antoine Pitrou | 2014-02-25 | 1 | -0/+30 |
|/ | | | | PurePath.with_suffix(). | ||||
* | Mention specific exceptions instead of OSError where appropriate. | Antoine Pitrou | 2013-12-16 | 1 | -3/+4 |
| | |||||
* | Issue #19921: When Path.mkdir() is called with parents=True, any missing ↵ | Antoine Pitrou | 2013-12-16 | 1 | -1/+4 |
| | | | | | | parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command). Patch by Serhiy. | ||||
* | Some minor clarifications in the documentation of pathlib + inheritance diagram | Eli Bendersky | 2013-11-28 | 1 | -68/+80 |
| | |||||
* | Change pathlib documentation to use "raise" instead of "throw". | Ned Deily | 2013-11-27 | 1 | -2/+2 |
| | |||||
* | Issue #19793: Improved markup for True/False constants in pathlib documentation. | Serhiy Storchaka | 2013-11-26 | 1 | -28/+28 |
| | |||||
* | Wording changes to pathlib docs. | Andrew Kuchling | 2013-11-22 | 1 | -4/+3 |
| | | | | | | | | | | Only possibly-controversial change: joinpath() was described as: "Calling this method is equivalent to indexing the path with each of the *other* arguments in turn." 'Indexing' is an odd word to use, because you can't subscript Path or PurePath objects, so I changed it to "combining". | ||||
* | Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428). | Antoine Pitrou | 2013-11-22 | 1 | -0/+874 |