Skip to content

Commit

Permalink
Stdlib: Deduplicate some multiprocessing type aliases (#9788)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood authored Feb 21, 2023
1 parent c407a44 commit f2ae354
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions stdlib/multiprocessing/dummy/connection.pyi
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
from multiprocessing.connection import _Address
from queue import Queue
from types import TracebackType
from typing import Any
from typing_extensions import Self, TypeAlias
from typing_extensions import Self

__all__ = ["Client", "Listener", "Pipe"]

families: list[None]

_Address: TypeAlias = str | tuple[str, int]

class Connection:
_in: Any
_out: Any
Expand Down

0 comments on commit f2ae354

Please sign in to comment.