8000 Replace various Incompletes in stdlib by srittau · Pull Request #11673 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content
8000

Replace various Incompletes in stdlib #11673

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

Merged
merged 14 commits into from
Apr 1, 2024
Merged
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
Next Next commit
Make _R covariant
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
srittau and AlexWaygood authored Apr 1, 2024
commit a0580f3f508e8c727a10233f12276549653bde2d
2 changes: 1 addition & 1 deletion stdlib/multiprocessin 7B5A g/util.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ __all__ = [
]

_T = TypeVar("_T")
_R = TypeVar("_R", default=Any)
_R = TypeVar("_R_co", default=Any, covariant=True)

NOTSET: int
SUBDEBUG: int
Expand Down
0