summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-02-11 15:16:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-02-11 15:16:16 (GMT)
commit932bba33f2d9131b7e9bb1e9b45529d0b4550657 (patch)
tree788f69f168df6009fe9d6ef2663ad458ccf56fee /Modules/posixmodule.c
parent3a308b9f374da7f11df888f104dae6464e81d73d (diff)
downloadcpython-932bba33f2d9131b7e9bb1e9b45529d0b4550657.zip
cpython-932bba33f2d9131b7e9bb1e9b45529d0b4550657.tar.gz
cpython-932bba33f2d9131b7e9bb1e9b45529d0b4550657.tar.bz2
avoid name clash with posix_close (closes #20594)
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index e72fbcf..767a665 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -7844,8 +7844,12 @@ PyDoc_STRVAR(posix_close__doc__,
"close(fd)\n\n\
Close a file descriptor (for low level IO).");
+/*
+The underscore at end of function name avoids a name clash with the libc
+function posix_close.
+*/
static PyObject *
-posix_close(PyObject *self, PyObject *args)
+posix_close_(PyObject *self, PyObject *args)
{
int fd, res;
if (!PyArg_ParseTuple(args, "i:close", &fd))
@@ -11261,7 +11265,7 @@ static PyMethodDef posix_methods[] = {
{"open", (PyCFunction)posix_open,\
METH_VARARGS | METH_KEYWORDS,
posix_open__doc__},
- {"close", posix_close, METH_VARARGS, posix_close__doc__},
+ {"close", posix_close_, METH_VARARGS, posix_close__doc__},
{"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
{"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__},
{"dup", posix_dup, METH_VARARGS, posix_dup__doc__},