summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ntpath.py
Commit message (Expand)AuthorAgeFilesLines
* gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298)박문식2023-10-051-0/+43
* gh-106242: Make ntpath.realpath errors consistent with abspath when there are...Steve Dower2023-08-221-0/+6
* gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832)Serhiy Storchaka2023-08-111-0/+1
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Steve Dower2023-05-291-0/+20
* GH-78079: Fix UNC device path root normalization in pathlib (GH-102003)Barney Gale2023-04-141-0/+8
* GH-103220: Fix `ntpath.join()` of partial UNC drive with trailing slash (GH-1...Barney Gale2023-04-111-0/+5
* GH-88013: Fix TypeError raised by ntpath.realpath in some cases (GH-102813)AN Long2023-04-071-0/+7
* gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)Barney Gale2023-02-171-0/+4
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-081-1/+31
* gh-101000: Add os.path.splitroot() (#101002)Barney Gale2023-01-271-43/+95
* gh-96290: Support partial/invalid UNC drives in ntpath.normpath() and splitdr...Barney Gale2023-01-121-8/+25
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+17
* gh-81790: support "UNC" device paths in `ntpath.splitdrive()` (GH-91882)Barney Gale2022-06-101-0/+25
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...AN Long2022-06-061-0/+2
* bpo-40280: Skip more tests on Emscripten (GH-31947)Christian Heimes2022-03-171-1/+2
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-0/+34
* bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.norm...neonene2022-01-061-0/+9
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-2/+3
* bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ...Barney Gale2021-04-281-2/+58
* bpo-39899: os.path.expanduser(): don't guess other Windows users' home direct...Barney Gale2021-04-071-15/+28
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-071-6/+6
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-061-3/+3
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-031-38/+40
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters....Serhiy Storchaka2020-06-251-1/+1
* bpo-38453: Ensure correct short path is obtained for test (GH-17184)Steve Dower2019-11-161-3/+21
* bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967)Steve Dower2019-11-151-12/+40
* bpo-38355: Fix ntpath.realpath failing on sys.executable (GH-16551)Steve Dower2019-10-031-7/+5
* bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899)Steve Dower2019-09-111-0/+4
* bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)Steve Dower2019-09-101-91/+105
* bpo-9949: Call normpath() in realpath() and avoid unnecessary prefixes (GH-15...Steve Dower2019-08-211-2/+2
* bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287)Steve Dower2019-08-211-3/+195
* bpo-37393: Fix deprecation warnings in test_ntpath. (GH-14357)Zackery Spytz2019-06-251-2/+0
* bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282)Anthony Sottile2019-03-121-10/+11
* bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082)Tim Graham2018-10-251-0/+2
* bpo-31047: Fix ntpath.abspath for invalid paths (GH-8544)Franz Wöllert2018-07-291-0/+4
* bpo-34195: Fix case-sensitive comparison in test_nt_helpers (GH-8448)Tim Golden2018-07-251-5/+11
* bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)Serhiy Storchaka2018-03-021-12/+3
* bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage n...Steve Dower2018-02-221-10/+36
* Issue #29197: Removed deprecated function ntpath.splitunc().Serhiy Storchaka2017-01-131-24/+1
* Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-0/+83
* Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.Serhiy Storchaka2015-03-311-0/+69
* Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-0/+1
* Issue #7665: Fixed tests test_ntpath and test_urllib2 when ran in theSerhiy Storchaka2015-01-261-3/+4
* Issue #21493: Added test for ntpath.expanduser(). Original patch bySerhiy Storchaka2014-05-281-0/+35
* Issue #6815: os.path.expandvars() now supports non-ASCII environmentSerhiy Storchaka2014-02-131-3/+24
|\
| * Issue #6815: os.path.expandvars() now supports non-ASCII environmentSerhiy Storchaka2014-02-131-3/+24
* | Issue #19456: ntpath.join() now joins relative paths correctly when a driveSerhiy Storchaka2014-01-271-33/+36
|\ \ | |/
| * Issue #19456: ntpath.join() now joins relative paths correctly when a driveSerhiy Storchaka2014-01-271-32/+35
* | Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-161-0/+23
|\ \ | |/
| * Issue #19912: Fixed numerous bugs in ntpath.splitunc().Serhiy Storchaka2013-12-161-0/+23