msg288767 - (view) |
Author: Jim Fasarakis-Hilliard (Jim Fasarakis-Hilliard) * |
Date: 2017-03-01 17:37 |
Method absolute of Path objects lacked documentation, proposed PR adds relevant method to docs.
|
msg288923 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2017-03-03 20:37 |
As brought up on the PR, it turns out Path.absolute() is extremely under-tested.
Perhaps we should deprecate Path.absolute() instead of document it and properly test it (and the testing will be necessary to move forward with the documentation)? Path.resolve() handles absolute paths already while also resolving '.' and '..': https://docs.python.org/3/library/pathlib.html#pathlib.Path.resolve. It also works with non-existent paths so unless there's some performance issue I'm not aware of for resolving '.' and '..', then I say we deprecate Path.absolute().
|
msg288931 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2017-03-03 21:17 |
I've closed the PR on GitHub until we decide whether we just want to deprecate Path.absolute() in favour of Path.resolve().
|
msg289413 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2017-03-10 22:14 |
I'm still thinking about this but I'm still leaning towards deprecating pathlib.absolute().
|
msg289436 - (view) |
Author: Eryk Sun (eryksun) * |
Date: 2017-03-11 05:17 |
resolve() can't replace absolute(). They serve different purposes. Sometimes one wants an absolute path, but without resolving symbolic links.
absolute() processes a path as a string, which will continue to be true if it's updated to call nt._getfullpathname (GetFullPathName) on Windows. OTOH, resolve() can outright fail on Windows. I can write up a list of examples (I can think of 5 or 6 unhandled error codes), but it's not directly relevant to this issue.
|
msg289452 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2017-03-11 18:43 |
I know it has it's uses (avoiding stat calls is one of them), but it is still undocumented, untested, and has two comments in it saying it needs work. Because of all that it might as well not exist since it doesn't meet our standards of quality.
If someone wants to fix all those issues then we can properly document it as supported, but if no one is willing to then I don't think we should leave unsupported code lying around that people might discover through dir().
And it doesn't serve a _different_ purpose compared to resolve(), it serves a _subset_ of resolve()'s purpose since resolve() calls absolute() unconditionally.
|
msg289460 - (view) |
Author: Eryk Sun (eryksun) * |
Date: 2017-03-12 00:47 |
What's the rationale for not calling self._flavour.pathmod.abspath() to implement absolute()? For example:
>>> p = pathlib.Path('C:/con')
>>> p._flavour.pathmod.abspath(p)
'\\\\.\\con'
>>> p._from_parts((p._flavour.pathmod.abspath(p),), init=False)
WindowsPath('//./con/')
That's almost right except for an unrelated problem that pathlib shouldn't append a trailing slash for \\.\ local device paths. Doing so creates a different path, which may be invalid. \\.\con is a symbolic link to \Device\ConDrv\Console, and adding a trailing backslash after the "Console" filename is invalid. An example where the resulting path is valid but wrong is the volume device \\.\C:, which is a link to something like \Device\HarddiskVolume2. Appending a backslash refers to the root directory of the file system on the volume.
|
msg289507 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2017-03-12 20:26 |
"What's the rationale for not calling self._flavour.pathmod.abspath() to implement absolute()?" Beats me. :) It's just how Antoine wrote it and that's all I know.
|
msg289509 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) * |
Date: 2017-03-12 20:52 |
posixpath.abspath() collapses "<path>/<symlink>/.." to "<path>", this is not correct. Not sure about ntpath.abspath().
|
msg289526 - (view) |
Author: Inada Naoki (methane) * |
Date: 2017-03-13 02:58 |
> posixpath.abspath() collapses "<path>/<symlink>/.." to "<path>", this is not correct. Not sure about ntpath.abspath().
I feel this is reasonable limitation, and expected behavior for some cases.
So I think adding note about this in document is enough.
|
msg358642 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2019-12-18 19:46 |
I have opened https://bugs.python.org/issue39090 to track updating the pathlib docs to have a section on getting the absolute path in various ways along with what the trade-offs are for each approach.
|
msg393731 - (view) |
Author: Barney Gale (barneygale) * |
Date: 2021-05-15 22:19 |
New PR up here: https://github.com/python/cpython/pull/26153
The correspondence between `pathlib` and `os.path` is as follows:
- `Path.resolve()` is roughly `os.path.realpath()`
- `Path.absolute()` is roughly `os.path.abspath()`
Differences:
- `resolve()` always raises RuntimeError on symlink loops, whereas `realpath()` either raises OSError or nothing depending on *strict*.
- `absolute()` doesn't normalize the path, whereas `abspath()` does. Normalizing without resolving symlinks can change the meaning of the path, so pathlib does the better thing here.
|
msg395689 - (view) |
Author: Barney Gale (barneygale) * |
Date: 2021-06-12 15:08 |
Hi - please could a core dev review PR 26153? It adds documentation and tests for Path.absolute(). Thank you!
|
msg412044 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2022-01-28 23:40 |
New changeset 18cb2ef46c9998480f7182048435bc58265c88f2 by Barney Gale in branch 'main':
bpo-29688: document and test `pathlib.Path.absolute()` (GH-26153)
https://github.com/python/cpython/commit/18cb2ef46c9998480f7182048435bc58265c88f2
|
msg412099 - (view) |
Author: Barney Gale (barneygale) * |
Date: 2022-01-29 19:41 |
Now that GH 26153 is merged, I think this bug can be resolved.
|
msg412102 - (view) |
Author: Eryk Sun (eryksun) * |
Date: 2022-01-29 20:10 |
In Windows, paths that are relative to the current directory on a drive aren't resolved. The following should be resolved by the current code:
>>> os.chdir('C:/Temp')
>>> pathlib.Path('C:').absolute()
WindowsPath('C:')
But _from_parts() has bugs with drive-relative paths.
Assuming the bugs are fixed, when a path has a drive, Path.absolute() should resolve against abspath(self.drive) instead of getcwd().
|
msg412219 - (view) |
Author: Brett Cannon (brett.cannon) * |
Date: 2022-01-31 21:02 |
@eryksun I'm not seeing what's wrong with your example. Would you mind pointing out what you expect the result to be?
And are you saying on Windows you have to resolve the drive separately from the working directory and then concatenate them?
|
msg412221 - (view) |
Author: Eryk Sun (eryksun) * |
Date: 2022-01-31 22:11 |
> I'm not seeing what's wrong with your example.
"C:" or "C:spam\\eggs" are not absolute paths. They depend on the effective working directory on the drive. An absolute path should never depend on a working directory, which can change at random.
WinAPI SetEnvironmentVariableW() allows applications to set environment variables with names that begin with "=". These names are effectively reserved for special use by the OS, at least as documented. In particular, names of the form "=X:", where "X" is a drive letter, are used to store the working directory on a drive. The C runtime _[w]chdir() function sets these per-drive environment variables, as does Python's os.chdir(). As environment variables, they can be inherited by child processes.
When then Windows API resolves a file path to access a file, or in GetFullPathNameW(), a drive-relative path such as "X:" or "X:spam\\eggs" is resolved against either the current working directory (if it's on the drive) or the value of the "=X:" environment variable for the drive. If the latter isn't defined, it defaults to the root directory, e.g. "X:\\". If the current working directory is on the drive, the system updates the value of the "=X:" environment variable, if it exists.
> on Windows you have to resolve the drive separately from the
> working directory and then concatenate them?
No, if self.drive is defined, then abspath(self.drive) should be called instead of getcwd(). In Windows, ntpath.abspath() calls WinAPI GetFullPathNameW(), which resolves the working directory on the drive.
|
msg412222 - (view) |
Author: Barney Gale (barneygale) * |
Date: 2022-01-31 22:19 |
@eryksun thanks for flagging, a couple thoughts:
I'd imagine that bug is reproducible with `Path('C:\\Temp', 'C:')` already, right? If that's the case, should it logged as a separate issue?
I'm planning to /experimentally/ throw away pathlib's internal
path parsing logic and defer to `posixpath` / `ntpath` instead. I suspect this bug and others will be fixed by that change, but I need to see what the performance impact will be.
|
msg412223 - (view) |
Author: Eryk Sun (eryksun) * |
Date: 2022-01-31 23:20 |
> I'd imagine that bug is reproducible with `Path('C:\\Temp', 'C:')`
> already, right? If that's the case, should it logged as a
> separate issue?
Yes, it's a separate issue that affects the _from_parts() call in absolute().
How about designing absolute() to create a new instance from an absolute path that's created by os.path? For example:
join(abspath(self.drive) if self.drive else getcwd(), self)
Of course use accessor functions.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:58:43 | admin | set | github: 73874 |
2022-01-31 23:20:11 | eryksun | set | messages:
+ msg412223 |
2022-01-31 22:19:42 | barneygale | set | messages:
+ msg412222 |
2022-01-31 22:11:30 | eryksun | set | messages:
+ msg412221 |
2022-01-31 22:09:07 | eryksun | set | messages:
- msg412220 |
2022-01-31 22:07:25 | eryksun | set | messages:
+ msg412220 |
2022-01-31 21:02:58 | brett.cannon | set | messages:
+ msg412219 |
2022-01-29 20:10:47 | eryksun | set | messages:
+ msg412102 |
2022-01-29 19:41:06 | barneygale | set | messages:
+ msg412099 |
2022-01-28 23:40:59 | brett.cannon | set | messages:
+ msg412044 |
2021-06-12 15:08:45 | barneygale | set | messages:
+ msg395689 |
2021-05-15 22:19:38 | barneygale | set | messages:
+ msg393731 |
2021-05-15 22:09:49 | barneygale | set | keywords:
+ patch nosy:
+ barneygale
pull_requests:
+ pull_request24787 stage: patch review |
2021-03-17 07:10:19 | eryksun | link | issue25012 superseder |
2021-03-17 07:08:51 | eryksun | set | messages:
- msg289517 |
2021-03-13 03:39:25 | eryksun | set | assignee: docs@python type: enhancement components:
+ Library (Lib) versions:
+ Python 3.8, Python 3.9, Python 3.10, - Python 3.5, Python 3.6, Python 3.7 |
2020-10-19 12:40:07 | 4-launchpad-kalvdans-no-ip-org | set | nosy:
+ 4-launchpad-kalvdans-no-ip-org
|
2019-12-18 19:46:31 | brett.cannon | set | messages:
+ msg358642 |
2017-03-13 16:38:23 | brett.cannon | set | assignee: brett.cannon -> (no value) |
2017-03-13 02:58:49 | methane | set | nosy:
+ methane messages:
+ msg289526
|
2017-03-13 00:06:31 | eryksun | set | messages:
+ msg289517 |
2017-03-12 20:52:49 | serhiy.storchaka | set | nosy:
+ serhiy.storchaka messages:
+ msg289509
|
2017-03-12 20:26:41 | brett.cannon | set | messages:
+ msg289507 |
2017-03-12 00:47:05 | eryksun | set | messages:
+ msg289460 |
2017-03-11 18:43:22 | brett.cannon | set | title: Add support for Path.absolute -> Add support for Path.absolute() |
2017-03-11 18:43:17 | brett.cannon | set | title: Document Path.absolute -> Add support for Path.absolute |
2017-03-11 18:43:06 | brett.cannon | set | messages:
+ msg289452 |
2017-03-11 05:17:14 | eryksun | set | nosy:
+ eryksun messages:
+ msg289436
|
2017-03-10 22:14:26 | brett.cannon | set | messages:
+ msg289413 |
2017-03-03 21:20:32 | serhiy.storchaka | set | nosy:
+ pitrou
|
2017-03-03 21:17:05 | brett.cannon | set | messages:
+ msg288931 |
2017-03-03 20:37:32 | brett.cannon | set | messages:
+ msg288923 |
2017-03-02 18:56:01 | brett.cannon | set | assignee: docs@python -> brett.cannon
nosy:
+ brett.cannon |
2017-03-01 17:38:12 | Jim Fasarakis-Hilliard | set | pull_requests:
+ pull_request321 |
2017-03-01 17:37:28 | Jim Fasarakis-Hilliard | create | |