We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8489f commit 43d60ceCopy full SHA for 43d60ce
tests/test_futures.py
@@ -1,3 +1,5 @@
1
+# LICENSE: PSF.
2
+
3
import asyncio
4
import concurrent.futures
5
import re
tests/test_tasks.py
from asyncio import test_utils
uvloop/chain_futs.pyx
# Copied from asyncio 3.5.2. Remove this file when we don't need
# to support earlier versions.
uvloop/future.pyx
DEF _FUT_PENDING = 1
DEF _FUT_CANCELLED = 2
DEF _FUT_FINISHED = 3
uvloop/task.pyx
cdef class BaseTask(BaseFuture):
cdef:
readonly object _coro
0 commit comments