summaryrefslogtreecommitdiff
path: root/Lib/ntpath.py
Commit message (Expand)AuthorAgeFilesLines
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-2/+2
* Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-1/+1
* Issue #21840: Fixed expanding unicode variables of form $var inSerhiy Storchaka2015-02-131-4/+5
* don't index outside of the path (closes #22312)Benjamin Peterson2014-08-311-1/+1
* fix ntpath.join on UNC-style paths by backporting py3k's splitdrive (closes #...Benjamin Peterson2014-06-221-5/+42
* Issue #6815: os.path.expandvars() now supports non-ASCII Unicode environmentSerhiy Storchaka2014-02-191-9/+16
* Issue #19456: ntpath.join() now joins relative paths correctly when a driveSerhiy Storchaka2014-01-271-55/+24
* Removed old implementation of ntpath.splitunc() (issue #19912).Serhiy Storchaka2013-12-161-19/+0
* Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-161-9/+31
* Correction to f1509fc75435 - Issue #11583Brian Curtin2011-06-091-5/+3
* MergeBrian Curtin2011-06-081-0/+12
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Issue #5117: My previous commit for this issue broke posix buildbot.Hirokazu Yamamoto2010-10-191-12/+23
* Issue #5117: Fixed root directory related issue on posixpath.relpath() andHirokazu Yamamoto2010-10-181-2/+2
* Merged revisions 83352,83356-83358,83362,83366,83368-83369 via svnmerge fromGeorg Brandl2010-08-011-0/+6
* #3426: os.path.abspath now returns unicode when its arg is unicode.Ezio Melotti2010-02-201-1/+7
* #5827: make sure that normpath preserves unicodeEzio Melotti2010-01-121-4/+6
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-1/+2
* Add Py3k warnings to os.path.walkBenjamin Peterson2008-05-091-1/+3
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
* #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir.Georg Brandl2008-01-061-0/+2
* #1696393: don't check for '.' and '..' in ntpath.walk sinceGeorg Brandl2008-01-061-5/+3
* Bug #1688564: document os.path.join's absolute path behavior in the docstring.Georg Brandl2007-08-231-1/+3
* Patch 1339796: add a relpath() function to os.path.Collin Winter2007-03-161-1/+27
* Patch #957650: "%var%" environment variable references are now properlyGeorg Brandl2007-03-131-16/+42
* Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', '').Martin v. Löwis2007-03-071-10/+3
* Fixed ntpath.expandvars to not replace references to non-existingSjoerd Mullender2007-01-161-2/+6
* - Move functions common to all path modules into genericpath.py and have theJack Diederich2006-08-261-72/+5
* SF bug #1473760 TempFile can hang on Windows.Tim Peters2006-04-211-21/+22
* Bug #1266283: lexists() is not exported from os.pathGeorg Brandl2005-08-221-4/+4
* patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc.Georg Brandl2005-08-031-8/+7
* Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists i...Johannes Gijsbers2004-08-301-1/+2
* Make ntpath compress multiple slashes between drive letter and the rest of theBrett Cannon2004-07-101-3/+19
* Feature request #935915: Add os.path.devnull.Martin v. Löwis2004-06-081-1/+2
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* make nt altsep forward slash - closes bug 709428Skip Montanaro2003-03-281-1/+1
* Tweak to Skip's checkin of patch 686397:Andrew MacIntyre2003-02-171-3/+2
* Migrate definitions of several platform-dependent path-related variablesSkip Montanaro2003-02-141-0/+16
* Fix SF #659228, 'realpath' function missing from os.pathNeal Norwitz2003-01-031-1/+1
* Patch #658927: Add getctime to os.path.Martin v. Löwis2002-12-311-1/+4
* Patch #536661: Improve performance of splitext. Add test_macpath.Martin v. Löwis2002-12-121-14/+6
* Don't try to access sys.getwindowsversion unless it exists (ntpath isTim Peters2002-10-091-1/+2
* Add os.path.supports_unicode_filenames for all platforms,Mark Hammond2002-10-081-1/+5
* Replaced obsolete stat module constants with equivalent attributesRaymond Hettinger2002-06-011-8/+5
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-4/+4
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-3/+3
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* Allow abspath to still do something sensisble if the nt module can not be imp...Mark Hammond2002-01-171-1/+11
* SF bug 478425: Change in os.path.join (ntpath.py)Tim Peters2001-11-051-0/+6
* SF bug [#469732] os.path.walk docstring inconsistent.Tim Peters2001-10-101-4/+13