first comm

This commit is contained in:
远野千束 2024-10-10 01:11:50 +08:00
parent e55b07d17b
commit 3989f601be

View File

@ -1,5 +1,5 @@
from multiprocessing import Pipe from multiprocessing import Pipe
from typing import TypeVar, Generic from typing import TypeVar, Generic, Any
T = TypeVar("T") T = TypeVar("T")
@ -40,11 +40,9 @@ class Chan(Generic[T]):
self.send(other) self.send(other)
return self return self
def __rlshift__(self, other) -> T: def __rlshift__(self, other: Any) -> T:
""" """
obj << chan << chan
Args:
other:
Returns: Returns:
""" """