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