mirror of
https://github.com/python/cpython.git
synced 2025-11-03 19:34:08 +00:00
bpo-45847: Port mmap, select, and _xxsubinterpreters to Py_STDLIB_MOD (GH-29703)
This commit is contained in:
parent
d3062f672c
commit
b451673f93
4 changed files with 83 additions and 4 deletions
6
setup.py
6
setup.py
|
|
@ -1036,17 +1036,17 @@ class PyBuildExt(build_ext):
|
|||
self.addext(Extension('spwd', ['spwdmodule.c']))
|
||||
|
||||
# select(2); not on ancient System V
|
||||
self.add(Extension('select', ['selectmodule.c']))
|
||||
self.addext(Extension('select', ['selectmodule.c']))
|
||||
|
||||
# Memory-mapped files (also works on Win32).
|
||||
self.add(Extension('mmap', ['mmapmodule.c']))
|
||||
self.addext(Extension('mmap', ['mmapmodule.c']))
|
||||
|
||||
# Lance Ellinghaus's syslog module
|
||||
# syslog daemon interface
|
||||
self.addext(Extension('syslog', ['syslogmodule.c']))
|
||||
|
||||
# Python interface to subinterpreter C-API.
|
||||
self.add(Extension('_xxsubinterpreters', ['_xxsubinterpretersmodule.c']))
|
||||
self.addext(Extension('_xxsubinterpreters', ['_xxsubinterpretersmodule.c']))
|
||||
|
||||
#
|
||||
# Here ends the simple stuff. From here on, modules need certain
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue