mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Test against Python 3.8 in Travis (#623)
* Test against Python 3.8 in Travis * Avoid current_task warnings in Python 3.8
This commit is contained in:
parent
28c4a6db5b
commit
1c063fae9d
2 changed files with 9 additions and 1 deletions
|
|
@ -9,12 +9,19 @@ tracers = {}
|
|||
TRACE_RESERVED_KEYS = {"type", "start", "end", "duration_ms", "traceback"}
|
||||
|
||||
|
||||
# asyncio.current_task was introduced in Python 3.7:
|
||||
for obj in (asyncio, asyncio.Task):
|
||||
current_task = getattr(obj, "current_task", None)
|
||||
if current_task is not None:
|
||||
break
|
||||
|
||||
|
||||
def get_task_id():
|
||||
try:
|
||||
loop = asyncio.get_event_loop()
|
||||
except RuntimeError:
|
||||
return None
|
||||
return id(asyncio.Task.current_task(loop=loop))
|
||||
return id(current_task(loop=loop))
|
||||
|
||||
|
||||
@contextmanager
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue