patch-Modules_posixmodule_c 1.0 KB

1234567891011121314151617181920
  1. --- Python-2.7.5.orig/Modules/posixmodule.c 2013-05-12 05:32:51.000000000 +0200
  2. +++ Python-2.7.5/Modules/posixmodule.c 2014-01-06 10:49:56.103893388 +0100
  3. @@ -6552,7 +6552,7 @@ PyDoc_STRVAR(posix_close__doc__,
  4. Close a file descriptor (for low level IO).");
  5. static PyObject *
  6. -posix_close(PyObject *self, PyObject *args)
  7. +posix_pyclose(PyObject *self, PyObject *args)
  8. {
  9. int fd, res;
  10. if (!PyArg_ParseTuple(args, "i:close", &fd))
  11. @@ -8930,7 +8930,7 @@ static PyMethodDef posix_methods[] = {
  12. {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
  13. #endif /* HAVE_TCSETPGRP */
  14. {"open", posix_open, METH_VARARGS, posix_open__doc__},
  15. - {"close", posix_close, METH_VARARGS, posix_close__doc__},
  16. + {"close", posix_pyclose, METH_VARARGS, posix_close__doc__},
  17. {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
  18. {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
  19. {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},