[Python-checkins] cpython: Issue #23648: Complete the list of modified functions for the PEP 475

victor.stinner python-checkins at python.org
Thu Apr 2 13:56:46 CEST 2015


https://hg.python.org/cpython/rev/66e4ef9a7467
changeset:   95378:66e4ef9a7467
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Apr 02 13:56:29 2015 +0200
summary:
  Issue #23648: Complete the list of modified functions for the PEP 475

files:
  Doc/whatsnew/3.5.rst |  32 +++++++++++++++++++++++++++++++-
  1 files changed, 31 insertions(+), 1 deletions(-)


diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -637,7 +637,37 @@
   raise an exception:
 
   - :func:`open`, :func:`os.open`, :func:`io.open`
-  - :func:`os.read`, :func:`os.write`
+  - functions of the :mod:`faulthandler` module
+  - :mod:`os` functions:
+
+    * :func:`os.fchdir`
+    * :func:`os.fchmod`
+    * :func:`os.fchown`
+    * :func:`os.fdatasync`
+    * :func:`os.fstat`
+    * :func:`os.fstatvfs`
+    * :func:`os.fsync`
+    * :func:`os.ftruncate`
+    * :func:`os.mkfifo`
+    * :func:`os.mknod`
+    * :func:`os.posix_fadvise`
+    * :func:`os.posix_fallocate`
+    * :func:`os.pread`
+    * :func:`os.pwrite`
+    * :func:`os.read`
+    * :func:`os.readv`
+    * :func:`os.sendfile`
+    * :func:`os.wait3`
+    * :func:`os.wait4`
+    * :func:`os.wait`
+    * :func:`os.waitid`
+    * :func:`os.waitpid`
+    * :func:`os.write`
+    * :func:`os.writev`
+    * special cases: :func:`os.close` and :func:`os.dup2` now ignore
+      :py:data:`~errno.EINTR` error, the syscall is not retried (see the PEP
+      for the rationale)
+
   - :func:`select.select`, :func:`select.poll.poll`, :func:`select.epoll.poll`,
     :func:`select.kqueue.control`, :func:`select.devpoll.poll`
   - :func:`socket.socket` methods:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list