diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-21 20:25:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-21 20:25:34 +0100 |
commit | 57d3349d5ab0fbb31439bf1ead92278edf140691 (patch) | |
tree | 5229cc6cf9d780af1bf1eacd1b5810d77039d136 /package/python3/patches/patch-Modules_posixmodule_c | |
parent | af5e6f9daf2e2b7457433d3302531ab63cc6241f (diff) |
update to latest upstream version
Diffstat (limited to 'package/python3/patches/patch-Modules_posixmodule_c')
-rw-r--r-- | package/python3/patches/patch-Modules_posixmodule_c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/python3/patches/patch-Modules_posixmodule_c b/package/python3/patches/patch-Modules_posixmodule_c deleted file mode 100644 index 537958513..000000000 --- a/package/python3/patches/patch-Modules_posixmodule_c +++ /dev/null @@ -1,20 +0,0 @@ ---- Python-3.3.2.orig/Modules/posixmodule.c 2013-05-15 18:32:59.000000000 +0200 -+++ Python-3.3.2/Modules/posixmodule.c 2014-01-06 18:59:54.000000000 +0100 -@@ -7679,7 +7679,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)) -@@ -11082,7 +11082,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_pyclose, 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__}, |