Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|\ | |||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | | | | | | | | | | | | 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. | ||||
* | | Further improve os.path.commonprefix() docs. | Yury Selivanov | 2015-08-19 | 1 | -4/+4 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | docs: Improve docs for os.path.commonprefix | Yury Selivanov | 2015-08-18 | 1 | -2/+15 |
| | | |||||
* | | Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. | Serhiy Storchaka | 2015-03-31 | 1 | -3/+16 |
|/ | | | | Based on patch by Rafik Draoui. | ||||
* | Issue #15414: Clean and correct the os.path.join docs. | Zachary Ware | 2014-10-10 | 1 | -11/+16 |
| | | | | | | In particular, correctly describe the behavior of ntpath.join. Based on a patch by Dave Sawyer. | ||||
* | clarify that islink only really works if python knows about symlinks (closes ↵ | Benjamin Peterson | 2014-06-23 | 1 | -1/+1 |
| | | | | | | #13143) Patch from Yayoi Ukai. | ||||
* | improve start default for relpath | Benjamin Peterson | 2014-03-20 | 1 | -1/+1 |
| | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -6/+12 |
| | |||||
* | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -3/+3 |
|\ | |||||
| * | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -3/+3 |
| | | |||||
* | | Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428). | Antoine Pitrou | 2013-11-22 | 1 | -0/+5 |
| | | |||||
* | | Issue #19207: Improved cross-references in the os, os.path, and posix modules | Serhiy Storchaka | 2013-10-13 | 1 | -3/+3 |
|\ \ | |/ | | | | | documentation. | ||||
| * | Issue #19207: Improved cross-references in the os, os.path, and posix modules | Serhiy Storchaka | 2013-10-13 | 1 | -3/+3 |
| | | | | | | | | documentation. | ||||
* | | merge with 3.3 | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Clarify docs for os.path.getctime on Unix: it is the inode (metadata) change ↵ | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | | | | | | | | time | ||||
* | | #18389: Clarify that relpath does not access the file system. | R David Murray | 2013-07-12 | 1 | -2/+4 |
|\ \ | |/ | | | | | Initial patch by Madison May. | ||||
| * | #18389: Clarify that relpath does not access the file system. | R David Murray | 2013-07-12 | 1 | -2/+4 |
| | | | | | | | | Initial patch by Madison May. | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-03-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Merge with 3.2 | Terry Jan Reedy | 2013-03-17 | 1 | -1/+1 |
| |\ | |||||
| | * | Issue #17415: Trim trailing whitespace | Terry Jan Reedy | 2013-03-17 | 1 | -1/+1 |
| | | | |||||
* | | | Merge with 3.3 | Terry Jan Reedy | 2013-03-17 | 1 | -7/+5 |
|\ \ \ | |/ / | |||||
| * | | Merge with 3.2 | Terry Jan Reedy | 2013-03-17 | 1 | -7/+5 |
| |\ \ | | |/ | |||||
| | * | Issue #17415: Clarify 'this' referent by moving containing sentence just after | Terry Jan Reedy | 2013-03-17 | 1 | -7/+5 |
| | | | | | | | | | | | | the sentence referred to. Make other minor edits to improve flow. | ||||
* | | | merge #16877: Add mention that shell-style path expansions are not automatic. | R David Murray | 2013-01-06 | 1 | -0/+5 |
|\ \ \ | |/ / | |||||
| * | | merge #16877: Add mention that shell-style path expansions are not automatic. | R David Murray | 2013-01-06 | 1 | -0/+5 |
| |\ \ | | |/ | |||||
| | * | #16877: Add mention that shell-style path expansions are not automatic. | R David Murray | 2013-01-06 | 1 | -0/+5 |
| | | | |||||
* | | | Fix #11939. Set st_dev attribute on Windows to simplify os.path.samefile. | Brian Curtin | 2012-12-26 | 1 | -5/+7 |
| | | | | | | | | | | | | | | | | | | By setting the st_dev attribute, we can then remove some Windows-specific code and move os.path.samefile/sameopenfile/samestat to Lib/genericpath.py so all platforms share the same implementation. | ||||
* | | | Merge: use OSError instead of os.error in the docs. | Andrew Svetlov | 2012-12-15 | 1 | -4/+4 |
|\ \ \ | |/ / | |||||
| * | | Use OSError instead of os.error in the docs. | Andrew Svetlov | 2012-12-15 | 1 | -4/+4 |
| | | | |||||
* | | | Merge from 3.3: add hyperlinks to some os.path function docs (issue #16552). | Chris Jerdonek | 2012-11-26 | 1 | -6/+9 |
|\ \ \ | |/ / | |||||
| * | | Merge from 3.2: add hyperlinks to some os.path function docs (issue #16552). | Chris Jerdonek | 2012-11-26 | 1 | -6/+9 |
| |\ \ | | |/ | |||||
| | * | Add hyperlinks to the docs of some os.path functions (issue #16552). | Chris Jerdonek | 2012-11-26 | 1 | -6/+9 |
| | | | |||||
* | | | #16135: Removal of OS/2 support (Docs) | Jesus Cea | 2012-10-04 | 1 | -1/+0 |
|/ / | |||||
* | | Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. | Richard Oudkerk | 2012-07-06 | 1 | -3/+8 |
| | | |||||
* | | Fix a couple of versionadded/versionchanged related markup errors. | Georg Brandl | 2012-06-24 | 1 | -1/+2 |
|/ | |||||
* | #9921: clarify os.path.join joining algorithm | R David Murray | 2011-06-24 | 1 | -4/+5 |
| | | | | | The new wording is based on the comments in the code, which match the actual behavior. | ||||
* | Consistent ordering of availability statements | Antoine Pitrou | 2010-12-12 | 1 | -2/+2 |
| | |||||
* | #6825: small correction to split() docs. | Georg Brandl | 2010-10-14 | 1 | -8/+8 |
| | |||||
* | Issue #767645: fix os.path.supports_unicode_filenames definition | Victor Stinner | 2010-09-11 | 1 | -2/+1 |
| | | | | | os.listdir(str) always returns unicode and it can return non-ascii filenames even if supports_unicode_filenames is False. | ||||
* | Implement #7566 - os.path.sameopenfile for Windows. | Brian Curtin | 2010-09-06 | 1 | -1/+3 |
| | | | | | | This uses the GetFileInformationByHandle function to return a tuple of values to identify a file, then ntpath.sameopenfile compares file tuples, which is exposed as os.path.sameopenfile. | ||||
* | #7386: add example that shows that trailing path separators are stripped. | Georg Brandl | 2010-08-02 | 1 | -1/+3 |
| | |||||
* | Fix markup. | Georg Brandl | 2010-07-10 | 1 | -1/+2 |
| | |||||
* | Adding versionchanged to the various Windows os.symlink additions, along | Brian Curtin | 2010-07-09 | 1 | -1/+3 |
| | | | | with a few minor touchups. | ||||
* | Implement #1578269. Patch by Jason R. Coombs. | Brian Curtin | 2010-07-08 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | | Added Windows support for os.symlink when run on Windows 6.0 or greater, aka Vista. Previous Windows versions will raise NotImplementedError when trying to symlink. Includes numerous test updates and additions to test_os, including a symlink_support module because of the fact that privilege escalation is required in order to run the tests to ensure that the user is able to create symlinks. By default, accounts do not have the required privilege, so the escalation code will have to be exposed later (or documented on how to do so). I'll be following up with that work next. Note that the tests use ctypes, which was agreed on during the PyCon language summit. | ||||
* | #9018: os.path.normcase() now raises a TypeError if the argument is not str ↵ | Ezio Melotti | 2010-06-25 | 1 | -0/+1 |
| | | | | or bytes. | ||||
* | Merged revisions 80894,80896 via svnmerge from | Benjamin Peterson | 2010-05-06 | 1 | -4/+13 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80894 | benjamin.peterson | 2010-05-06 17:33:46 -0500 (Thu, 06 May 2010) | 1 line Availability gets its own line ........ r80896 | benjamin.peterson | 2010-05-06 17:49:28 -0500 (Thu, 06 May 2010) | 1 line ensure that availability information is on its own line at the end of the function docs ........ | ||||
* | Switch more function arguments docs to new-style. | Georg Brandl | 2009-09-02 | 1 | -1/+1 |
| | |||||
* | Issue #5799: ntpath (ie, os.path on Windows) fully supports UNC pathnames. | Mark Hammond | 2009-05-06 | 1 | -5/+14 |
| | | | | By Larry Hastings, reviewed eric.smith and mark.hammond. | ||||
* | Remove merging accident. | Georg Brandl | 2009-04-27 | 1 | -27/+0 |
| |