summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.h
diff options
context:
space:
mode:
authorKyle Evans <kevans91@users.noreply.github.com>2020-10-13 15:04:44 -0500
committerGitHub <noreply@github.com>2020-10-13 22:04:44 +0200
commit7992579cd27f14f472acc37aca537eec55f681ef (patch)
tree5d738707fbf658dcbd2ddc6aaf0cf107b92bec45 /Modules/posixmodule.h
parent8b2ff4c03d150c43df3e8438d323b7f7bfe3353c (diff)
downloadcpython-git-7992579cd27f14f472acc37aca537eec55f681ef.tar.gz
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/posixmodule.h')
-rw-r--r--Modules/posixmodule.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/posixmodule.h b/Modules/posixmodule.h
index 749833f71c..1e00562abc 100644
--- a/Modules/posixmodule.h
+++ b/Modules/posixmodule.h
@@ -28,8 +28,6 @@ PyAPI_FUNC(int) _Py_Sigset_Converter(PyObject *, void *);
#endif /* HAVE_SIGSET_T */
#endif /* Py_LIMITED_API */
-PyAPI_FUNC(void) _Py_closerange(int first, int last);
-
#ifdef __cplusplus
}
#endif