summaryrefslogtreecommitdiff
path: root/package/python2/patches/patch-Modules_posixmodule_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-04-11 23:39:38 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-04-11 23:39:38 +0200
commitc1b759f6a4dca2f8c708f0ceae4a88d0da8ca0de (patch)
treefa1513166c7d8d43650308d48aaa0f8594e91043 /package/python2/patches/patch-Modules_posixmodule_c
parent022e705d87a6bc130dde6d5681656ab559f492ce (diff)
update to latest stable upstream
Diffstat (limited to 'package/python2/patches/patch-Modules_posixmodule_c')
-rw-r--r--package/python2/patches/patch-Modules_posixmodule_c20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/python2/patches/patch-Modules_posixmodule_c b/package/python2/patches/patch-Modules_posixmodule_c
deleted file mode 100644
index 5374fb975..000000000
--- a/package/python2/patches/patch-Modules_posixmodule_c
+++ /dev/null
@@ -1,20 +0,0 @@
---- Python-2.7.5.orig/Modules/posixmodule.c 2013-05-12 05:32:51.000000000 +0200
-+++ Python-2.7.5/Modules/posixmodule.c 2014-01-06 10:49:56.103893388 +0100
-@@ -6552,7 +6552,7 @@ PyDoc_STRVAR(posix_close__doc__,
- Close a file descriptor (for low level IO).");
-
- static PyObject *
--posix_close(PyObject *self, PyObject *args)
-+posix_pyclose(PyObject *self, PyObject *args)
- {
- int fd, res;
- if (!PyArg_ParseTuple(args, "i:close", &fd))
-@@ -8930,7 +8930,7 @@ static PyMethodDef posix_methods[] = {
- {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
- #endif /* HAVE_TCSETPGRP */
- {"open", posix_open, METH_VARARGS, posix_open__doc__},
-- {"close", posix_close, METH_VARARGS, posix_close__doc__},
-+ {"close", posix_pyclose, METH_VARARGS, posix_close__doc__},
- {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
- {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
- {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},