8000 os.path.splitroot: Python 3.13 by aminalaee · Pull Request #12172 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

os.path.splitroot: Python 3.13 #12172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update posixpath.pyi
  • Loading branch information
aminalaee authored Jul 1, 2024
commit 45427de2ae8632784a6e0423caa03d7d3c70e69b
4 changes: 2 additions & 2 deletions stdlib/posixpath.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,6 @@ def lexists(path: FileDescriptorOrPath) -> bool: ...
if sys.version_info >= (3, 12):
def isjunction(path: StrOrBytesPath) -> bool: ...
@overload
def splitroot(p: AnyOrLiteralStr) -> tuple[AnyOrLiteralStr, AnyOrLiteralStr, AnyOrLiteralStr]: ...
def splitroot(path: AnyOrLiteralStr) -> tuple[AnyOrLiteralStr, AnyOrLiteralStr, AnyOrLiteralStr]: ...
@overload
def splitroot(p: PathLike[AnyStr]) -> tuple[AnyStr, AnyStr, AnyStr]: ...
def splitroot(path: PathLike[AnyStr]) -> tuple[AnyStr, AnyStr, AnyStr]: ...
Loading
0