diff options
author | Kyle Evans <kevans91@users.noreply.github.com> | 2020-10-13 20:04:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 20:04:44 (GMT) |
commit | 7992579cd27f14f472acc37aca537eec55f681ef (patch) | |
tree | 5d738707fbf658dcbd2ddc6aaf0cf107b92bec45 /Modules/Setup | |
parent | 8b2ff4c03d150c43df3e8438d323b7f7bfe3353c (diff) | |
download | cpython-7992579cd27f14f472acc37aca537eec55f681ef.zip cpython-7992579cd27f14f472acc37aca537eec55f681ef.tar.gz cpython-7992579cd27f14f472acc37aca537eec55f681ef.tar.bz2 |
bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)
This API is relatively lightweight and organizationally, given that it's
used by multiple modules, it makes sense to move it to fileutils.
Requires making sure that _posixsubprocess is compiled with the appropriate
Py_BUIILD_CORE_BUILTIN macro.
Diffstat (limited to 'Modules/Setup')
-rw-r--r-- | Modules/Setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup b/Modules/Setup index 470bf6b..87f3a7c 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -226,7 +226,7 @@ _symtable symtablemodule.c #termios termios.c # Steen Lumholt's termios module #resource resource.c # Jeremy Hylton's rlimit interface -#_posixsubprocess _posixsubprocess.c # POSIX subprocess module helper +#_posixsubprocess -DPy_BUILD_CORE_BUILTIN _posixsubprocess.c # POSIX subprocess module helper # Multimedia modules -- off by default. # These don't work for 64-bit platforms!!! |