Use 'as name' patter to re-export names from stubs (PEP 484) (#1484)

This commit is contained in:
Ivan Levkivskyi
2017-07-14 21:31:53 -07:00
committed by Jelle Zijlstra
parent 643aedea1b
commit d75ea88da5
4 changed files with 8 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
from typing import Any, Callable, Generator, Iterable, Iterator, List, Type, TypeVar, Union, Optional
from typing import Any, Callable, Generator, Iterable, Iterator, List, Type, TypeVar, Union, Optional, Awaitable
from .coroutines import coroutine
from .events import AbstractEventLoop
from .futures import Future, Awaitable
from .futures import Future
from types import TracebackType
_T = TypeVar('_T')