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
Add missing Generic marker
  • Loading branch information
srittau committed Mar 30, 2024
commit c921c5553c369c94383d116ff9393c13eb15df2e
4 changes: 2 additions & 2 deletions stdlib/multiprocessing/util.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import threading
from _typeshed import ConvertibleToInt, Incomplete, Unused
from collections.abc import Callable, Iterable, Mapping, MutableMapping, Sequence
from logging import Logger, _Level as _LoggingLevel
from typing import Any, TypeVar, overload
from typing import Any, Generic, TypeVar, overload

__all__ = [
"sub_debug",
Expand Down Expand Up @@ -47,7 +47,7 @@ abstract_sockets_supported: bool
def get_temp_dir() -> str: ...
def register_after_fork(obj: _T, func: Callable[[_T], object]) -> None: ...

class Finalize:
class Finalize(Generic[_R]):
@overload
def __init__(
self,
Expand Down