-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Spurious errors on the builtin open when running mypy on mypy #14796
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
Comments
Interesting. I can reproduce this. For reference argument 8 of And the I suspect that this issue may be caused by a cyclic import between --- a/stdlib/builtins.pyi
+++ b/stdlib/builtins.pyi
@@ -1485,7 +1485,7 @@ def next(__i: SupportsNext[_T]) -> _T: ...
def next(__i: SupportsNext[_T], __default: _VT) -> _T | _VT: ...
def oct(__number: int | SupportsIndex) -> str: ...
-_Opener: TypeAlias = Callable[[str, int], int]
+_Opener = Callable[[str, int], int] |
@JelleZijlstra or @hauntsaninja, could one of you transfer this issue to mypy? I think the best thing to do would be to revert 6442b02. It fixes the crash that it was meant to fix, but I get some very strange mypy errors if I try changing Unfortunately it's not a clean revert. |
Cc. @Michael0x2a as author of the commit that this bisects to |
Re-opening since I reverted #15161 because it was causing further typeshed issues |
When running
mypy
following the procedure below, I encounter several errors for the overloadedopen
builtin of the form:To reproduce:
pip install mypy
python-m mypy --strict --no-silence-site-packages --disallow-any-unimported -m mypy
Both
--no-silence-site-packages
and--disallow-any-unimported
need to be present.Version 1.0.0 of mypy is required. Older versions don't exhibit this error.
This is the simplest way we have found to reproduce this problem, but we first encountered it in one of our own projects.
The issue is being filed here because the
mypy
docs for reporting bugs says that problems with a specific library function should be reported here. We're not seeing this error with any other functions.The text was updated successfully, but these errors were encountered: