| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-119826: Improved fallback for ntpath.abspath() on Windows (GH-119938) | Nice Zombies | 2024-11-12 | 1 | -18/+31 |
|
|
* | gh-120417: Remove unused imports in the stdlib (#120420) | Victor Stinner | 2024-06-12 | 1 | -1/+0 |
|
|
* | gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix... | Nice Zombies | 2024-05-24 | 1 | -37/+5 |
|
|
* | gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ... | Nice Zombies | 2024-05-21 | 1 | -17/+4 |
|
|
* | gh-117607: Speedup os.path.relpath() (GH-117608) | Nice Zombies | 2024-05-01 | 1 | -9/+10 |
|
|
* | gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089) | Nice Zombies | 2024-04-25 | 1 | -48/+68 |
|
|
* | gh-117636: Remove redundant type check in `os.path.join()` (#117638) | Nice Zombies | 2024-04-14 | 1 | -2/+0 |
|
|
* | gh-117686: Improve the performance of ntpath.expanduser() (#117690) | Nice Zombies | 2024-04-10 | 1 | -1/+3 |
|
|
* | gh-117648: Improve performance of os.join (#117654) | Nice Zombies | 2024-04-09 | 1 | -1/+1 |
|
|
* | gh-117381: Improve error messages for ntpath.commonpath() (GH-117382) | Nice Zombies | 2024-04-03 | 1 | -3/+6 |
|
|
* | gh-117349: Micro-optimize a few `os.path` functions (#117350) | Nice Zombies | 2024-04-02 | 1 | -16/+13 |
|
|
* | gh-117335: Handle non-iterables for `ntpath.commonpath` (GH-117336) | Nice Zombies | 2024-03-28 | 1 | -6/+5 |
|
|
* | gh-117114: Make os.path.isdevdrive available on all platforms (GH-117115) | Nice Zombies | 2024-03-25 | 1 | -21/+7 |
|
|
* | gh-88569: add `ntpath.isreserved()` (#95486) | Barney Gale | 2024-01-26 | 1 | -2/+38 |
|
|
* | GH-44626, GH-105476: Fix `ntpath.isabs()` handling of part-absolute paths (#1... | Barney Gale | 2024-01-13 | 1 | -10/+3 |
|
|
* | gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298) | 박문식 | 2023-10-05 | 1 | -6/+10 |
|
|
* | gh-106242: Make ntpath.realpath errors consistent with abspath when there are... | Steve Dower | 2023-08-22 | 1 | -0/+12 |
|
|
* | gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi... | Steve Dower | 2023-05-29 | 1 | -0/+16 |
|
|
* | GH-103220: Fix `ntpath.join()` of partial UNC drive with trailing slash (GH-1... | Barney Gale | 2023-04-11 | 1 | -1/+1 |
|
|
* | GH-88013: Fix TypeError raised by ntpath.realpath in some cases (GH-102813) | AN Long | 2023-04-07 | 1 | -1/+1 |
|
|
* | gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324) | Michael Droettboom | 2023-02-08 | 1 | -19/+8 |
|
|
* | gh-101000: Add os.path.splitroot() (#101002) | Barney Gale | 2023-01-27 | 1 | -54/+72 |
|
|
* | gh-96290: Support partial/invalid UNC drives in ntpath.normpath() and splitdr... | Barney Gale | 2023-01-12 | 1 | -34/+21 |
|
|
* | bpo-44817: Ignore additional errors in ntpath.realpath (GH-27574) | Michael Förderer | 2022-12-05 | 1 | -1/+4 |
|
|
* | gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548) | Charles Machalow | 2022-11-22 | 1 | -1/+19 |
|
|
* | gh-89545: Updates platform module to use new internal _wmi module on Windows ... | Steve Dower | 2022-09-07 | 1 | -3/+2 |
|
|
* | gh-81790: support "UNC" device paths in `ntpath.splitdrive()` (GH-91882) | Barney Gale | 2022-06-10 | 1 | -1/+7 |
|
|
* | bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas... | AN Long | 2022-06-06 | 1 | -8/+34 |
|
|
* | bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571) | neonene | 2022-01-13 | 1 | -1/+1 |
|
|
* | bpo-45582: Port getpath[p].c to Python (GH-29041) | Steve Dower | 2021-12-03 | 1 | -49/+63 |
|
|
* | bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ... | Barney Gale | 2021-04-28 | 1 | -1/+3 |
|
|
* | bpo-39899: Don't double-check directory name if we're requesting the current ... | Barney Gale | 2021-04-09 | 1 | -8/+9 |
|
|
* | bpo-39899: os.path.expanduser(): don't guess other Windows users' home direct... | Barney Gale | 2021-04-07 | 1 | -3/+15 |
|
|
* | bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967) | Steve Dower | 2019-11-15 | 1 | -8/+41 |
|
|
* | bpo-38355: Fix ntpath.realpath failing on sys.executable (GH-16551) | Steve Dower | 2019-10-03 | 1 | -11/+9 |
|
|
* | bpo-38081: Add more non-fatal error codes for ntpath.realpath (GH-16156) | Steve Dower | 2019-09-16 | 1 | -7/+34 |
|
|
* | bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899) | Steve Dower | 2019-09-11 | 1 | -6/+7 |
|
|
* | bpo-9949: Call normpath() in realpath() and avoid unnecessary prefixes (GH-15... | Steve Dower | 2019-08-21 | 1 | -3/+8 |
|
|
* | bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287) | Steve Dower | 2019-08-21 | 1 | -19/+88 |
|
|
* | bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-1712) | Wolfgang Maier | 2019-03-28 | 1 | -10/+4 |
|
|
* | bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282) | Anthony Sottile | 2019-03-12 | 1 | -3/+1 |
|
|
* | bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082) | Tim Graham | 2018-10-25 | 1 | -1/+1 |
|
|
* | bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ... | Serhiy Storchaka | 2018-09-18 | 1 | -3/+3 |
|
|
* | bpo-31047: Fix ntpath.abspath for invalid paths (GH-8544) | Franz Wöllert | 2018-07-29 | 1 | -22/+20 |
|
|
* | bpo-31802: Fix importing native path module before importing os. (#4017) | Serhiy Storchaka | 2018-01-07 | 1 | -11/+12 |
|
|
* | Issue #29197: Removed deprecated function ntpath.splitunc(). | Serhiy Storchaka | 2017-01-13 | 1 | -23/+1 |
|
|
* | Issue #27355: Removed support for Windows CE. It was never finished, | Larry Hastings | 2016-09-05 | 1 | -2/+0 |
|
|
* | Issue #26027, #27524: Add PEP 519/__fspath__() support to os and | Brett Cannon | 2016-08-26 | 1 | -2/+16 |
|
|
* | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|
|
* | Issue #23780: Improved error message in os.path.join() with single argument. | Serhiy Storchaka | 2015-05-19 | 1 | -0/+2 |
|
|