summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-08 22:47:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-08 22:47:24 (GMT)
commitb0a9c66a49b6ced6748c33ecff407812facd723d (patch)
tree49ee8c590a076e86ca3d0f6adb18ccf569d5872c /Misc
parent317c8d257ebf8bf2f79eaa6a2d5b6e95a107e442 (diff)
downloadcpython-b0a9c66a49b6ced6748c33ecff407812facd723d.zip
cpython-b0a9c66a49b6ced6748c33ecff407812facd723d.tar.gz
cpython-b0a9c66a49b6ced6748c33ecff407812facd723d.tar.bz2
Issue #7978: socketserver now restarts the select() call when EINTR is returned.
This avoids crashing the server loop when a signal is received. Patch by Jerzy Kozera.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 77cec5c..3693c1c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -510,6 +510,7 @@ Damon Kohler
Marko Kohtala
Vlad Korolev
Joseph Koshy
+Jerzy Kozera
Maksim Kozyarchuk
Stefan Krah
Bob Kras
diff --git a/Misc/NEWS b/Misc/NEWS
index 4af242a..924c7dc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,10 @@ Core and Builtins
Library
-------
+- Issue #7978: socketserver now restarts the select() call when EINTR is
+ returned. This avoids crashing the server loop when a signal is received.
+ Patch by Jerzy Kozera.
+
- Issue #14496: Fix wrong name in idlelib/tabbedpages.py.
Patch by Popa Claudiu.