PEP 475: remove code handling InterruptedError

This commit is contained in:
Victor Stinner 2014-10-28 22:00:32 +01:00
parent eba2eac2ea
commit 94f881c777
1 changed files with 9 additions and 0 deletions

View File

@ -173,6 +173,15 @@ Note: The ``selector`` module already retries on ``InterruptedError``, but it
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
======================