File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 10
10
import concurrent .futures
11
11
12
12
from ._handles import ScopedHandle , AsyncHandle
13
- from ._util import run_aio_future , run_aio_generator
14
- from ._deprecate import deprecated , deprecated_alias
15
- from . import _util
13
+ from ._util import run_aio_future
16
14
17
15
from selectors import _BaseSelectorImpl , EVENT_READ , EVENT_WRITE
18
16
Original file line number Diff line number Diff line change 4
4
import sys
5
5
import trio
6
6
import asyncio
7
- import warnings
8
7
import threading
9
8
from contextvars import ContextVar
10
9
13
12
except ImportError :
14
13
from async_generator import asynccontextmanager
15
14
16
- from ._util import run_aio_future , run_aio_generator
17
15
from ._async import TrioEventLoop
18
- from ._deprecate import deprecated , warn_deprecated
16
+ from ._deprecate import warn_deprecated
19
17
20
18
try :
21
19
from trio .lowlevel import wait_for_child
You can’t perform that action at this time.
0 commit comments