[Python-checkins] peps: PEP 475: remove code handling InterruptedError

victor.stinner python-checkins at python.org
Tue Oct 28 22:01:17 CET 2014


https://hg.python.org/peps/rev/627fefe0394f
changeset:   5588:627fefe0394f
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Oct 28 22:00:32 2014 +0100
summary:
  PEP 475: remove code handling InterruptedError

files:
  pep-0475.txt |  9 +++++++++
  1 files changed, 9 insertions(+), 0 deletions(-)


diff --git a/pep-0475.txt b/pep-0475.txt
--- a/pep-0475.txt
+++ b/pep-0475.txt
@@ -173,6 +173,15 @@
 doesn't recompute the timeout yet.
 
 
+InterruptedError
+----------------
+
+Since interrupted system calls are automatically retried, the
+``InterruptedError`` exception should not occur anymore. The code handling
+``InterruptedError`` can be removed from in the standard library to simply the
+code.
+
+
 Backward Compatibility
 ======================
 

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


More information about the Python-checkins mailing list