From eb778ec0325bf30d63fd4df1be2b71a630e25bc1 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 10 Apr 2015 14:56:39 +0000 Subject: main/python3: moved to main --- main/python3/posix_close.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 main/python3/posix_close.patch (limited to 'main/python3/posix_close.patch') diff --git a/main/python3/posix_close.patch b/main/python3/posix_close.patch new file mode 100644 index 0000000000..e15433cfe5 --- /dev/null +++ b/main/python3/posix_close.patch @@ -0,0 +1,20 @@ +--- ./Modules/posixmodule.c.orig ++++ ./Modules/posixmodule.c +@@ -7768,7 +7768,7 @@ + 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)) +@@ -11426,7 +11426,7 @@ + {"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__}, -- cgit v1.2.3