summaryrefslogtreecommitdiff
path: root/lang/python23-pth/patches/patch-cb
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python23-pth/patches/patch-cb')
-rw-r--r--lang/python23-pth/patches/patch-cb24
1 files changed, 0 insertions, 24 deletions
diff --git a/lang/python23-pth/patches/patch-cb b/lang/python23-pth/patches/patch-cb
deleted file mode 100644
index 53944cda97e..00000000000
--- a/lang/python23-pth/patches/patch-cb
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-cb,v 1.1 2004/06/14 02:31:13 lukem Exp $
-
---- Modules/signalmodule.c.orig 2003-03-14 00:56:53.000000000 +1100
-+++ Modules/signalmodule.c
-@@ -137,9 +137,6 @@ signal_handler(int sig_num)
- return;
- }
- #endif
--#ifdef HAVE_SIGINTERRUPT
-- siginterrupt(sig_num, 1);
--#endif
- PyOS_setsig(sig_num, signal_handler);
- }
-
-@@ -217,9 +214,6 @@ signal_signal(PyObject *self, PyObject *
- }
- else
- func = signal_handler;
--#ifdef HAVE_SIGINTERRUPT
-- siginterrupt(sig_num, 1);
--#endif
- if (PyOS_setsig(sig_num, func) == SIG_ERR) {
- PyErr_SetFromErrno(PyExc_RuntimeError);
- return NULL;