summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
Commit message (Expand)AuthorAgeFilesLines
* gh-117686: Improve the performance of ntpath.expanduser() (#117690)Nice Zombies2024-04-101-1/+3
* gh-117648: Improve performance of os.join (#117654)Nice Zombies2024-04-091-1/+1
* gh-117381: Improve error messages for ntpath.commonpath() (GH-117382)Nice Zombies2024-04-031-3/+6
* gh-117349: Micro-optimize a few `os.path` functions (#117350)Nice Zombies2024-04-021-16/+13
* gh-117335: Handle non-iterables for `ntpath.commonpath` (GH-117336)Nice Zombies2024-03-281-6/+5
* gh-117114: Make os.path.isdevdrive available on all platforms (GH-117115)Nice Zombies2024-03-251-21/+7
* gh-88569: add `ntpath.isreserved()` (#95486)Barney Gale2024-01-261-2/+38
* GH-44626, GH-105476: Fix `ntpath.isabs()` handling of part-absolute paths (#1...Barney Gale2024-01-131-10/+3
* gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298)박문식2023-10-051-6/+10
* gh-106242: Make ntpath.realpath errors consistent with abspath when there are...Steve Dower2023-08-221-0/+12
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Steve Dower2023-05-291-0/+16
* GH-103220: Fix `ntpath.join()` of partial UNC drive with trailing slash (GH-1...Barney Gale2023-04-111-1/+1
* GH-88013: Fix TypeError raised by ntpath.realpath in some cases (GH-102813)AN Long2023-04-071-1/+1
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-081-19/+8
* gh-101000: Add os.path.splitroot() (#101002)Barney Gale2023-01-271-54/+72
* gh-96290: Support partial/invalid UNC drives in ntpath.normpath() and splitdr...Barney Gale2023-01-121-34/+21
* bpo-44817: Ignore additional errors in ntpath.realpath (GH-27574)Michael Förderer2022-12-051-1/+4
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-1/+19
* gh-89545: Updates platform module to use new internal _wmi module on Windows ...Steve Dower2022-09-071-3/+2
* gh-81790: support "UNC" device paths in `ntpath.splitdrive()` (GH-91882)Barney Gale2022-06-101-1/+7
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...AN Long2022-06-061-8/+34
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-1/+1
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-49/+63
* bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ...Barney Gale2021-04-281-1/+3
* bpo-39899: Don't double-check directory name if we're requesting the current ...Barney Gale2021-04-091-8/+9
* bpo-39899: os.path.expanduser(): don't guess other Windows users' home direct...Barney Gale2021-04-071-3/+15
* bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967)Steve Dower2019-11-151-8/+41
* bpo-38355: Fix ntpath.realpath failing on sys.executable (GH-16551)Steve Dower2019-10-031-11/+9
* bpo-38081: Add more non-fatal error codes for ntpath.realpath (GH-16156)Steve Dower2019-09-161-7/+34
* bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899)Steve Dower2019-09-111-6/+7
* bpo-9949: Call normpath() in realpath() and avoid unnecessary prefixes (GH-15...Steve Dower2019-08-211-3/+8
* bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287)Steve Dower2019-08-211-19/+88
* bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-1712)Wolfgang Maier2019-03-281-10/+4
* bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282)Anthony Sottile2019-03-121-3/+1
* bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082)Tim Graham2018-10-251-1/+1
* bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ...Serhiy Storchaka2018-09-181-3/+3
* bpo-31047: Fix ntpath.abspath for invalid paths (GH-8544)Franz Wöllert2018-07-291-22/+20
* bpo-31802: Fix importing native path module before importing os. (#4017)Serhiy Storchaka2018-01-071-11/+12
* Issue #29197: Removed deprecated function ntpath.splitunc().Serhiy Storchaka2017-01-131-23/+1
* Issue #27355: Removed support for Windows CE. It was never finished,Larry Hastings2016-09-051-2/+0
* Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-2/+16
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
* Issue #23780: Improved error message in os.path.join() with single argument.Serhiy Storchaka2015-05-191-0/+2
* Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.Serhiy Storchaka2015-03-311-1/+62
* Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-1/+1
|\
| * Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-1/+1
* | Fixed tests on Windows for issue #21883.Serhiy Storchaka2014-10-041-1/+1
* | Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError withSerhiy Storchaka2014-10-041-44/+52
* | Issue #15275: Clean up and speed up the ntpath module.Serhiy Storchaka2014-07-231-93/+77
|/
* Issue #6815: os.path.expandvars() now supports non-ASCII environmentSerhiy Storchaka2014-02-131-29/+31
|\