Jelle Zijlstra
2018-03-22 08:01:09 -07:00
committed by GitHub
parent 9a6a7a2e75
commit bbbffb5f4b
5 changed files with 23 additions and 2 deletions

View File

@@ -14,6 +14,8 @@ if sys.version_info >= (3, 5):
if sys.version_info >= (3, 6):
from typing import ContextManager as AbstractContextManager
if sys.version_info >= (3, 7):
from typing import AsyncContextManager as AbstractAsyncContextManager
_T = TypeVar('_T')