Skip to content

Commit ce84b7e

Browse files
committed
Fix 3.7 warning
1 parent c3a5ec8 commit ce84b7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uvloop/includes/stdlib.pxi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import asyncio, asyncio.log, asyncio.base_events, \
22
asyncio.sslproto, asyncio.coroutines, \
33
asyncio.futures
4-
import collections
4+
import collections.abc
55
import concurrent.futures
66
import errno
77
import functools
@@ -44,7 +44,7 @@ cdef aio_set_running_loop = getattr(asyncio, '_set_running_loop', None)
4444
cdef aio_debug_wrapper = getattr(asyncio.coroutines, 'debug_wrapper', None)
4545

4646
cdef col_deque = collections.deque
47-
cdef col_Iterable = collections.Iterable
47+
cdef col_Iterable = collections.abc.Iterable
4848
cdef col_Counter = collections.Counter
4949
cdef col_OrderedDict = collections.OrderedDict
5050

0 commit comments

Comments
 (0)