allow to use RLock in type annotations (#595)

This commit is contained in:
Matthias Kramm
2016-10-10 16:52:47 -07:00
committed by Guido van Rossum
parent 71042452c7
commit b0eae4bf46

View File

@@ -106,7 +106,7 @@ class _RLock:
def release(self) -> None: ...
def RLock() -> _RLock: ...
RLock = _RLock
class Condition: