mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
stdlib: fix many attributes which are read-only at runtime but read-write in the stub (#7395)
This commit is contained in:
@@ -120,7 +120,8 @@ class local:
|
||||
|
||||
class Thread:
|
||||
name: str
|
||||
ident: int | None
|
||||
@property
|
||||
def ident(self) -> int | None: ...
|
||||
daemon: bool
|
||||
def __init__(
|
||||
self,
|
||||
@@ -225,9 +226,12 @@ class Timer(Thread):
|
||||
def cancel(self) -> None: ...
|
||||
|
||||
class Barrier:
|
||||
parties: int
|
||||
n_waiting: int
|
||||
broken: bool
|
||||
@property
|
||||
def parties(self) -> int: ...
|
||||
@property
|
||||
def n_waiting(self) -> int: ...
|
||||
@property
|
||||
def broken(self) -> bool: ...
|
||||
def __init__(self, parties: int, action: Callable[[], None] | None = ..., timeout: float | None = ...) -> None: ...
|
||||
def wait(self, timeout: float | None = ...) -> int: ...
|
||||
def reset(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user