aboutsummaryrefslogtreecommitdiffstats
path: root/main/python3/posix_close.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-10-16 07:21:30 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2015-10-16 07:21:30 +0000
commitc0ac128766d4f41b4d6f02bd7f034bf327e66b64 (patch)
treeaf53c970cf6d6c68b8981f9c8da7163c0b49178d /main/python3/posix_close.patch
parente73a9710303903229f6bc99c9a54a0960796d91d (diff)
downloadaports-c0ac128766d4f41b4d6f02bd7f034bf327e66b64.tar.bz2
aports-c0ac128766d4f41b4d6f02bd7f034bf327e66b64.tar.xz
main/python3: upgrade to 3.5.0
Diffstat (limited to 'main/python3/posix_close.patch')
-rw-r--r--main/python3/posix_close.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/main/python3/posix_close.patch b/main/python3/posix_close.patch
deleted file mode 100644
index e15433cfe5..0000000000
--- a/main/python3/posix_close.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- ./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__},