mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 13:52:28 +00:00
Fix import asyncio
(#763)
This commit is contained in:
parent
775f456d4c
commit
893703a07b
6 changed files with 39 additions and 24 deletions
11
third_party/python/python.c
vendored
11
third_party/python/python.c
vendored
|
@ -495,7 +495,7 @@ PYTHON_YOINK("smtplib");
|
|||
PYTHON_YOINK("nntplib");
|
||||
|
||||
PYTHON_YOINK("asdl");
|
||||
#ifdef WITH_THREAD
|
||||
|
||||
PYTHON_YOINK("_thread");
|
||||
PYTHON_YOINK("_thread.LockType");
|
||||
PYTHON_YOINK("_thread.RLock");
|
||||
|
@ -513,6 +513,11 @@ PYTHON_YOINK("_thread.interrupt_main");
|
|||
PYTHON_YOINK("_thread.stack_size");
|
||||
PYTHON_YOINK("_thread.start_new");
|
||||
PYTHON_YOINK("_thread.start_new_thread");
|
||||
PYTHON_YOINK("concurrent");
|
||||
PYTHON_YOINK("concurrent.futures");
|
||||
PYTHON_YOINK("concurrent.futures._base");
|
||||
PYTHON_YOINK("concurrent.futures.process");
|
||||
PYTHON_YOINK("concurrent.futures.thread");
|
||||
PYTHON_YOINK("asynchat");
|
||||
PYTHON_YOINK("asyncore");
|
||||
PYTHON_YOINK("asyncio");
|
||||
|
@ -535,12 +540,8 @@ PYTHON_YOINK("asyncio.sslproto");
|
|||
PYTHON_YOINK("asyncio.streams");
|
||||
PYTHON_YOINK("asyncio.subprocess");
|
||||
PYTHON_YOINK("asyncio.tasks");
|
||||
PYTHON_YOINK("asyncio.test_utils");
|
||||
PYTHON_YOINK("asyncio.transports");
|
||||
PYTHON_YOINK("asyncio.unix_events");
|
||||
PYTHON_YOINK("asyncio.windows_events");
|
||||
PYTHON_YOINK("asyncio.windows_utils");
|
||||
#endif
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue