Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #5117: Fixed root directory related issue on posixpath.relpath() and | Hirokazu Yamamoto | 2010-10-18 | 1 | -2/+2 |
| | | | | ntpath.relpath(). | ||||
* | Added missing import. | Hirokazu Yamamoto | 2010-09-18 | 1 | -0/+1 |
| | |||||
* | Merged revisions 84866 via svnmerge from | Victor Stinner | 2010-09-17 | 1 | -1/+1 |
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84866 | victor.stinner | 2010-09-18 01:34:26 +0200 (sam., 18 sept. 2010) | 4 lines Issue #767645: Set os.path.supports_unicode_filenames to True in posixpath Previous commit changed macpath but macpath is not used anymore as os.path ........ | ||||
* | Merged revisions 83393,83396,83398,83405,83408 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83393 | georg.brandl | 2010-08-01 10:35:29 +0200 (So, 01 Aug 2010) | 1 line #1690103: fix initial namespace for code run with trace.main(). ........ r83396 | georg.brandl | 2010-08-01 10:52:32 +0200 (So, 01 Aug 2010) | 1 line #4810: document "--" option separator in timeit help. ........ r83398 | georg.brandl | 2010-08-01 11:06:34 +0200 (So, 01 Aug 2010) | 1 line #8826: the "expires" attribute value is a date string with spaces, but apparently not all user-agents put it in quotes. Handle that as a special case. ........ r83405 | georg.brandl | 2010-08-01 16:38:17 +0200 (So, 01 Aug 2010) | 1 line #4943: do not try to include drive letters (and colons) when looking for a probably module name. ........ r83408 | georg.brandl | 2010-08-01 17:30:56 +0200 (So, 01 Aug 2010) | 1 line #5551: symbolic links never can be mount points. Fixes the fix for #1713. ........ | ||||
* | #3426: os.path.abspath now returns unicode when its arg is unicode. | Ezio Melotti | 2010-02-20 | 1 | -1/+5 |
| | |||||
* | No need to assign the results of expressions used only for side effects. | Georg Brandl | 2010-02-06 | 1 | -1/+1 |
| | |||||
* | #5827: make sure that normpath preserves unicode | Ezio Melotti | 2010-01-12 | 1 | -4/+6 |
| | |||||
* | #4351: more appropriate DeprecationWarning stacklevels | Philip Jenvey | 2009-05-08 | 1 | -1/+2 |
| | |||||
* | #5471: fix expanduser() for $HOME set to "/". | Georg Brandl | 2009-04-05 | 1 | -1/+1 |
| | |||||
* | excellent place to use a set() #5069 | Benjamin Peterson | 2009-01-27 | 1 | -2/+2 |
| | |||||
* | Add Py3k warnings to os.path.walk | Benjamin Peterson | 2008-05-09 | 1 | -1/+2 |
| | |||||
* | #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. | Georg Brandl | 2008-01-06 | 1 | -0/+2 |
| | | | | Reported by Jesse Towner. | ||||
* | Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint. | Christian Heimes | 2008-01-04 | 1 | -2/+2 |
| | |||||
* | Bug #1688564: document os.path.join's absolute path behavior in the docstring. | Georg Brandl | 2007-08-23 | 1 | -1/+3 |
| | |||||
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 1 | -2/+2 |
| | | | | You might want to review this change as it's my first time. Be gentle. :-) | ||||
* | Patch 1339796: add a relpath() function to os.path. | Collin Winter | 2007-03-16 | 1 | -1/+16 |
| | |||||
* | Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). | Martin v. Löwis | 2007-03-07 | 1 | -8/+3 |
| | |||||
* | Bug #1560179: speed up posixpath.(dir|base)name | Georg Brandl | 2006-10-12 | 1 | -4/+9 |
| | |||||
* | Bug #1566602: correct failure of posixpath unittest when $HOME ends | Georg Brandl | 2006-09-30 | 1 | -2/+1 |
| | | | | with a slash. | ||||
* | - Move functions common to all path modules into genericpath.py and have the | Jack Diederich | 2006-08-26 | 1 | -70/+1 |
| | | | | | OS speicifc path modules import them. - Have os2emxpath import common functions fron ntpath instead of using copies | ||||
* | Bug #1266283: lexists() is not exported from os.path | Georg Brandl | 2005-08-22 | 1 | -2/+2 |
| | |||||
* | Bug #1213894: os.path.realpath didn't resolve symlinks that were the first | Georg Brandl | 2005-06-03 | 1 | -1/+1 |
| | | | | component of the path. | ||||
* | Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists ↵ | Johannes Gijsbers | 2004-08-30 | 1 | -0/+11 |
| | | | | in glob.glob. | ||||
* | Whitespace normalization. | Tim Peters | 2004-08-20 | 1 | -3/+3 |
| | |||||
* | bug #990669: os.path.realpath() will resolve symlinks before normalizing the | Johannes Gijsbers | 2004-08-14 | 1 | -7/+9 |
| | | | | | | | | path, as normalizing the path may alter the meaning of the path if it contains symlinks. Also add tests for infinite symlink loops and parent symlinks that need to be resolved. | ||||
* | Use isabs() in conditional, not abspath | Andrew M. Kuchling | 2004-08-02 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -1/+1 |
| | |||||
* | Remove tabs introduced in last commit. | Brett Cannon | 2004-07-11 | 1 | -4/+4 |
| | |||||
* | posixpath.realpath() now detects symlink loops and returns the path just before | Brett Cannon | 2004-07-10 | 1 | -6/+30 |
| | | | | | | the loop starts. Closes bug #930024. Thanks AM Kuchling. | ||||
* | Feature request #935915: Add os.path.devnull. | Martin v. Löwis | 2004-06-08 | 1 | -1/+2 |
| | |||||
* | fix various descriptions of "ctime" | Fred Drake | 2004-05-12 | 1 | -1/+1 |
| | | | | (closes SF patch #870287) | ||||
* | SF Patch 681780: Faster commonprefix (OS independent) | Raymond Hettinger | 2003-12-31 | 1 | -10/+7 |
| | | | | | | | Improved based on discussions at: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/252177 http://groups.google.com/groups?th=fc7b54f11af6b24e&seekm=bss2so$om$00$1@news.t-online.com | ||||
* | SF patch #834015: Remove imports of unused modules | Raymond Hettinger | 2003-11-02 | 1 | -1/+0 |
| | | | | (Contributed by George Yoshida.) | ||||
* | back out the darwin supports_unicode_filenames patch; it causes deep ↵ | Just van Rossum | 2003-07-17 | 1 | -4/+1 |
| | | | | problems with the tests | ||||
* | [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSX | Just van Rossum | 2003-07-11 | 1 | -1/+5 |
| | |||||
* | Use find() instead of looping over the string in expanduser(). | Walter Dörwald | 2003-06-19 | 1 | -4/+4 |
| | | | | From SF patch #757058. | ||||
* | Modernize Lib/posixpath.py: Use startswith(), endswith(), rstrip(), | Walter Dörwald | 2003-06-17 | 1 | -15/+16 |
| | | | | | | struct_passwd attributes and +=. From SF patch #755245. | ||||
* | Migrate definitions of several platform-dependent path-related variables | Skip Montanaro | 2003-02-14 | 1 | -0/+10 |
| | | | | into the relevant path modules. See patch #686397. | ||||
* | Fix SF #659228, 'realpath' function missing from os.path | Neal Norwitz | 2003-01-03 | 1 | -1/+2 |
| | | | | | | | Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think? | ||||
* | Patch #658927: Add getctime to os.path. | Martin v. Löwis | 2002-12-31 | 1 | -1/+4 |
| | | | | Document that getatime and getmtime may return floats. | ||||
* | Patch #536661: Improve performance of splitext. Add test_macpath. | Martin v. Löwis | 2002-12-12 | 1 | -14/+5 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -1/+0 |
| | |||||
* | Add os.path.supports_unicode_filenames for all platforms, | Mark Hammond | 2002-10-08 | 1 | -1/+4 |
| | | | | | | sys.getwindowsversion() on Windows (new enahanced Tim-proof <wink> version), and fix test_pep277.py in a few minor ways. Including doc and NEWS entries. | ||||
* | SF # 555779, import user doesn't work with CGIs | Neal Norwitz | 2002-09-05 | 1 | -2/+4 |
| | |||||
* | Remove another reference to stat.ST_MODE | Neal Norwitz | 2002-06-06 | 1 | -1/+1 |
| | |||||
* | Replaced obsolete stat module constants with equivalent attributes | Raymond Hettinger | 2002-06-01 | 1 | -15/+12 |
| | |||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -2/+2 |
| | |||||
* | Partial introduction of bools where appropriate. | Guido van Rossum | 2002-04-07 | 1 | -4/+4 |
| | |||||
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 1 | -7/+7 |
| | |||||
* | SF bug [#469732] os.path.walk docstring inconsistent. | Tim Peters | 2001-10-10 | 1 | -4/+14 |
| | | | | | We have 5 implementations of walk(), and 5 different docstrings. Combined 'em. Let's see how long it takes before they're all different again! |