summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Modules/Setup.in5
-rw-r--r--Modules/cryptmodule.c1
-rw-r--r--Modules/signalmodule.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in
index 65c559fd9f..44ad2b2229 100644
--- a/Modules/Setup.in
+++ b/Modules/Setup.in
@@ -264,7 +264,10 @@ rotor rotormodule.c # enigma-inspired encryption
#sybase sybasemodule.c
-# Generic (SunOS / SVR4) dynamic loading module
+# Generic (SunOS / SVR4) dynamic loading module.
+# This is not needed for dynamic loading of Python modules --
+# it is a highly experimental and dangerous device for calling
+# *arbitrary* C functions in *arbitrary* shared libraries.
#dl dlmodule.c
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c
index 9cdcac8b56..13c79ba527 100644
--- a/Modules/cryptmodule.c
+++ b/Modules/cryptmodule.c
@@ -2,7 +2,6 @@
*/
#include "allobjects.h"
-#include "modsupport.h"
#include <sys/types.h>
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 97d895bc36..1bf48923f8 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -57,7 +57,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
generated by the keyboard (e.g. SIGINT) are delivered to all
threads (e.g. SGI), while in others (e.g. Solaris) such signals are
delivered to one random thread (an intermediate possibility would
- be to deliver it to the main thread -- POSIX???). For now, we have
+ be to deliver it to the main thread -- POSIX?). For now, we have
a working implementation that works in all three cases -- the
handler ignores signals if getpid() isn't the same as in the main
thread. XXX This is a hack.