Skip to content
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

Exact return types instead of shutil._PathReturn #13767

Merged

Conversation

Avasam
Copy link
Collaborator

@Avasam Avasam commented Apr 2, 2025

Closes #13508

#13508 (comment)

Given that the return type would be StrPath (ie: str | PathLike[str]) and that we can return a str if dst: str and str | _T otherwise, I'd argue that's a fine union to return.

Most cases of using a StrPath whether you actually have a str or a PathLike won't matter too much. If you do explicitly need a str after potentially passing a PathLike or explicitely need the same PathLike you passed, then you should really check the return here.

And once again, in most cases, you can coerce the type (using str() or Path())

>>> Path("")
WindowsPath('.')
>>> Path(Path())
WindowsPath('.')
>>> str(".")
'.'
>>> str(Path("."))
'.'

(this argument may not hold as well for bytespath though, what's a common PathLike[bytes] ?)


I'm not hard set on this, it's a balance between type safety, and a (imo) possibly very small annoyance in the specific case you know for certain that you're moving/copying a file + are passing in a PathLike + need the result to not be a string.

But I'm at least demonstrating the suggestion, and can dial it back to an Any return type.

Copy link
Contributor

github-actions bot commented Apr 2, 2025

Diff from mypy_primer, showing the effect of this PR on open source code:

prefect (https://github.com/PrefectHQ/prefect)
+ src/prefect/filesystems.py:162: error: Value of type variable "_StrPathT" of "copytree" cannot be "Optional[str]"  [type-var]
- src/prefect/filesystems.py:162: error: Argument 2 to "copytree" has incompatible type "Optional[str]"; expected "Union[str, PathLike[str]]"  [arg-type]

mkosi (https://github.com/systemd/mkosi)
+ mkosi/__init__.py:3307:16: error: Incompatible return value type (got "tuple[Union[Path, str], None, None, list[Path]]", expected "tuple[Optional[Path], Optional[str], Optional[Path], list[Path]]")  [return-value]
+ mkosi/__init__.py:3320:12: error: Incompatible types in assignment (expression has type "Union[Path, str]", variable has type "Path")  [assignment]
+ mkosi/__init__.py:3329:12: error: Incompatible types in assignment (expression has type "Union[Path, str]", variable has type "Path")  [assignment]

@srittau
Copy link
Collaborator

srittau commented Apr 2, 2025

Obligatory link to python/typing#566 (AnyOf suggestion).

@Avasam
Copy link
Collaborator Author

Avasam commented Apr 2, 2025

Obligatory link to python/typing#566 (AnyOf suggestion).

Would love to see an official proposal for that one. I don't think I have the time/motivation/expertise to tackle that though.

Copy link
Collaborator

@srittau srittau left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Considering the low primer impact and the fact that this is a genuine trap (and a bug in my opinion) this change seems good to me.

@srittau srittau merged commit 1e43190 into python:main Apr 3, 2025
55 checks passed
@Avasam Avasam deleted the Exact-return-types-instead-of-shutil._PathReturn branch April 4, 2025 04:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

convert shutil._PathReturn to a type parameter?
2 participants