Fix the definition of LockType.__exit__. (#1485)

This commit is contained in:
rchen152
2017-07-13 17:30:51 -07:00
committed by Matthias Kramm
parent dd7ff91519
commit 643aedea1b

View File

@@ -13,7 +13,7 @@ class LockType:
def locked(self) -> bool: ...
def locked_lock(self) -> bool: ...
def __enter__(self) -> LockType: ...
def __exit__(self, value: Any, traceback: Any) -> None: ...
def __exit__(self, typ: Any, value: Any, traceback: Any) -> None: ...
class _local(object):
pass