summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-02-23 15:07:35 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-02-23 15:07:35 (GMT)
commit7e251e83d5b488904212f91bace1322d12475803 (patch)
tree29f24e91e6a5261772816d5b500937b59e9a819d /Misc
parent57826cf9f8c1d75da8d7d0e27f564adb441329ad (diff)
downloadcpython-7e251e83d5b488904212f91bace1322d12475803.zip
cpython-7e251e83d5b488904212f91bace1322d12475803.tar.gz
cpython-7e251e83d5b488904212f91bace1322d12475803.tar.bz2
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added test cases, doc changes and NEWS entry. Thanks Jason and Ralf Schmitt.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 180d25a..c1172de 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1186,6 +1186,7 @@ Library
does not claim to support starttls. Adds the SMTP.ehlo_or_helo_if_needed()
method. Patch contributed by Bill Fenner.
+- Patch #1089358: Add signal.siginterrupt, a wrapper around siginterrupt(3).
Extension Modules
-----------------