summaryrefslogtreecommitdiff
path: root/Lib/posixpath.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-10496: posixpath.expanduser() catchs pwd.getpwuid() error (GH-10919) (GH-...Victor Stinner2018-12-051-1/+8
* # 2466: ismount now recognizes mount points user can't access.R David Murray2016-08-231-1/+1
* Fix typos in code comment and documentationMartin Panter2016-04-161-1/+1
* Issue #21840: Fixed expanding unicode variables of form $var inSerhiy Storchaka2015-02-131-14/+7
* Issue #6815: os.path.expandvars() now supports non-ASCII Unicode environmentSerhiy Storchaka2014-02-191-6/+21
* Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).Serhiy Storchaka2013-02-181-2/+4
* Issue #6975: os.path.realpath() now correctly resolves multiple nested symlin...Serhiy Storchaka2013-02-101-38/+43
* #15342: Add clarifying sentence to posixpath.join docstring.R David Murray2012-07-211-1/+2
* Issue #8767: Restore building with --disable-unicode.Martin v. Löwis2012-05-201-2/+10
* Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is...Jesus Cea2012-05-101-2/+2
* Issue #5117: Fixed root directory related issue on posixpath.relpath() andHirokazu Yamamoto2010-10-181-2/+2
* Added missing import.Hirokazu Yamamoto2010-09-181-0/+1
* Merged revisions 84866 via svnmerge fromVictor Stinner2010-09-171-1/+1
* Merged revisions 83393,83396,83398,83405,83408 via svnmerge fromGeorg Brandl2010-08-011-0/+3
* #3426: os.path.abspath now returns unicode when its arg is unicode.Ezio Melotti2010-02-201-1/+5
* No need to assign the results of expressions used only for side effects.Georg Brandl2010-02-061-1/+1
* #5827: make sure that normpath preserves unicodeEzio Melotti2010-01-121-4/+6
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-1/+2
* #5471: fix expanduser() for $HOME set to "/".Georg Brandl2009-04-051-1/+1
* excellent place to use a set() #5069Benjamin Peterson2009-01-271-2/+2
* Add Py3k warnings to os.path.walkBenjamin Peterson2008-05-091-1/+2
* #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir.Georg Brandl2008-01-061-0/+2
* Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.Christian Heimes2008-01-041-2/+2
* Bug #1688564: document os.path.join's absolute path behavior in the docstring.Georg Brandl2007-08-231-1/+3
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-2/+2
* Patch 1339796: add a relpath() function to os.path.Collin Winter2007-03-161-1/+16
* Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', '').Martin v. Löwis2007-03-071-8/+3
* Bug #1560179: speed up posixpath.(dir|base)nameGeorg Brandl2006-10-121-4/+9
* Bug #1566602: correct failure of posixpath unittest when $HOME endsGeorg Brandl2006-09-301-2/+1
* - Move functions common to all path modules into genericpath.py and have theJack Diederich2006-08-261-70/+1
* Bug #1266283: lexists() is not exported from os.pathGeorg Brandl2005-08-221-2/+2
* Bug #1213894: os.path.realpath didn't resolve symlinks that were the firstGeorg Brandl2005-06-031-1/+1
* Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists i...Johannes Gijsbers2004-08-301-0/+11
* Whitespace normalization.Tim Peters2004-08-201-3/+3
* bug #990669: os.path.realpath() will resolve symlinks before normalizing theJohannes Gijsbers2004-08-141-7/+9
* Use isabs() in conditional, not abspathAndrew M. Kuchling2004-08-021-1/+1
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-1/+1
* Remove tabs introduced in last commit.Brett Cannon2004-07-111-4/+4
* posixpath.realpath() now detects symlink loops and returns the path just beforeBrett Cannon2004-07-101-6/+30
* Feature request #935915: Add os.path.devnull.Martin v. Löwis2004-06-081-1/+2
* fix various descriptions of "ctime"Fred Drake2004-05-121-1/+1
* SF Patch 681780: Faster commonprefix (OS independent)Raymond Hettinger2003-12-311-10/+7
* SF patch #834015: Remove imports of unused modulesRaymond Hettinger2003-11-021-1/+0
* back out the darwin supports_unicode_filenames patch; it causes deep problems...Just van Rossum2003-07-171-4/+1
* [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSXJust van Rossum2003-07-111-1/+5
* Use find() instead of looping over the string in expanduser().Walter Dörwald2003-06-191-4/+4
* Modernize Lib/posixpath.py: Use startswith(), endswith(), rstrip(),Walter Dörwald2003-06-171-15/+16
* Migrate definitions of several platform-dependent path-related variablesSkip Montanaro2003-02-141-0/+10
* Fix SF #659228, 'realpath' function missing from os.pathNeal Norwitz2003-01-031-1/+2
* Patch #658927: Add getctime to os.path.Martin v. Löwis2002-12-311-1/+4