]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
cosmetics
authorGuido van Rossum <guido@python.org>
Thu, 12 Jan 1995 11:29:01 +0000 (11:29 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 12 Jan 1995 11:29:01 +0000 (11:29 +0000)
Modules/Setup.in
Modules/cryptmodule.c
Modules/signalmodule.c

index 65c559fd9fec2ce683d7ad7c90e178e90b2dacc9..44ad2b2229ed45295dde4f26088e0368fa9b9cca 100644 (file)
@@ -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
 
index 9cdcac8b56fc180b5c1a4e8dcf228b09b7161559..13c79ba527bee83e9cad9bfee2141d405cb0dea5 100644 (file)
@@ -2,7 +2,6 @@
  */
 
 #include "allobjects.h"
-#include "modsupport.h"
 
 #include <sys/types.h>
 
index 97d895bc36ce47e78b4e5a34abb0e6a8d03ae7ba..1bf48923f8840c56649ee50534b3c90b4f9363ce 100644 (file)
@@ -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.