mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Issue #26801: Added C implementation of asyncio.Future.
Original patch by Yury Selivanov.
This commit is contained in:
parent
518599b24c
commit
9e4e38ecd2
7 changed files with 1101 additions and 37 deletions
2
setup.py
2
setup.py
|
@ -656,6 +656,8 @@ class PyBuildExt(build_ext):
|
|||
depends=['unicodedata_db.h', 'unicodename_db.h']) )
|
||||
# _opcode module
|
||||
exts.append( Extension('_opcode', ['_opcode.c']) )
|
||||
# Fast asyncio Future implementation
|
||||
exts.append( Extension("_futures", ["_futuresmodule.c"]) )
|
||||
|
||||
# Modules with some UNIX dependencies -- on by default:
|
||||
# (If you have a really backward UNIX, select and socket may not be
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue