Various improvements for the mailbox stubs#14950
Open
srittau wants to merge 7 commits intopython:mainfrom
Open
Various improvements for the mailbox stubs#14950srittau wants to merge 7 commits intopython:mainfrom
srittau wants to merge 7 commits intopython:mainfrom
Conversation
* Use `_typeshed.SupportsItems` instead of custom `_HasItems` protocol. * Use a custom covariant protocol for mailbox messages. * Add `Mailbox._dump_message`. * Return a protocol from abstract method `Mailbox.get_file()`. * Return concrete type `BytesIO` instead of `typing.IO` from `Babyl.get_file()`. * Use our custom protocol instead of semi-protocol `typing.IO` in the remaining cases. Closes: python#14935
srittau
commented
Oct 30, 2025
stdlib/mailbox.pyi
Outdated
| class Mailbox(Generic[_MessageT]): | ||
| # Common interface for get_file() return types. | ||
| @type_check_only | ||
| class _GetFileReturn(Protocol[_AnyStr]): |
Collaborator
Author
There was a problem hiding this comment.
This protocol is only generic, because _ProxyFile (and _PartialFile) are unnecessarily generic at runtime.
Collaborator
Author
There was a problem hiding this comment.
Collaborator
Author
There was a problem hiding this comment.
Since this was changed upstream, I removed the generic marker here and for _ProxyFile, even if the latter was technically generic up until Python 3.14.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Contributor
|
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
_typeshed.SupportsItemsinstead of custom_HasItemsprotocol.Mailbox._dump_message.Mailbox.get_file().BytesIOinstead oftyping.IOfromBabyl.get_file().typing.IOin the remaining cases.Closes: #14935