We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07febeb commit ef3a670Copy full SHA for ef3a670
stdlib/pathlib/__init__.pyi
@@ -90,7 +90,7 @@ class PurePath(PathLike[str]):
90
def __rtruediv__(self, key: StrPath) -> Self: ...
91
def __bytes__(self) -> bytes: ...
92
def as_posix(self) -> str: ...
93
- @deprecated("PurePath.as_uri() is deprecated. Use Path.as_uri() instead.")
+ @deprecated("Deprecated since Python 3.14; will be removed in Python 3.19. Use `Path.as_uri()` instead.")
94
def as_uri(self) -> str: ...
95
def is_absolute(self) -> bool: ...
96
if sys.version_info >= (3, 13):
0 commit comments