mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
bpo-45847: Port _socket to PY_STDLIB_MOD (GH-29713)
This commit is contained in:
parent
758a23d1c4
commit
d82f2caf94
4 changed files with 19 additions and 4 deletions
6
setup.py
6
setup.py
|
@ -1034,6 +1034,8 @@ class PyBuildExt(build_ext):
|
|||
self.addext(Extension('fcntl', ['fcntlmodule.c']))
|
||||
# grp(3)
|
||||
self.addext(Extension('grp', ['grpmodule.c']))
|
||||
|
||||
self.addext(Extension('_socket', ['socketmodule.c']))
|
||||
self.addext(Extension('spwd', ['spwdmodule.c']))
|
||||
|
||||
# select(2); not on ancient System V
|
||||
|
@ -1254,9 +1256,6 @@ class PyBuildExt(build_ext):
|
|||
|
||||
self.add(Extension('_crypt', ['_cryptmodule.c'], libraries=libs))
|
||||
|
||||
def detect_socket(self):
|
||||
self.add(Extension('_socket', ['socketmodule.c']))
|
||||
|
||||
def detect_dbm_gdbm(self):
|
||||
# Modules that provide persistent dictionary-like semantics. You will
|
||||
# probably want to arrange for at least one of them to be available on
|
||||
|
@ -1460,7 +1459,6 @@ class PyBuildExt(build_ext):
|
|||
self.detect_test_extensions()
|
||||
self.detect_readline_curses()
|
||||
self.detect_crypt()
|
||||
self.detect_socket()
|
||||
self.detect_openssl_hashlib()
|
||||
self.detect_hash_builtins()
|
||||
self.detect_dbm_gdbm()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue