mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-26 05:41:11 +08:00
it's threading.Lock, not threading.LockType
This commit is contained in:
committed by
Łukasz Langa
parent
ac97b22365
commit
7e6000949e
@@ -129,7 +129,7 @@ class Filterer(object):
|
||||
class Handler(Filterer):
|
||||
level = ... # type: int
|
||||
formatter = ... # type: Optional[Formatter]
|
||||
lock = ... # type: Optional[threading.LockType]
|
||||
lock = ... # type: Optional[threading.Lock]
|
||||
def __init__(self, level: int = ...) -> None: ...
|
||||
def createLock(self) -> None: ...
|
||||
def acquire(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user