Skip to content

Commit a3c04b0

Browse files
committed
cosmetics
1 parent b941868 commit a3c04b0

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

Modules/Setup.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,10 @@ rotor rotormodule.c # enigma-inspired encryption
264264
#sybase sybasemodule.c
265265

266266

267-
# Generic (SunOS / SVR4) dynamic loading module
267+
# Generic (SunOS / SVR4) dynamic loading module.
268+
# This is not needed for dynamic loading of Python modules --
269+
# it is a highly experimental and dangerous device for calling
270+
# *arbitrary* C functions in *arbitrary* shared libraries.
268271

269272
#dl dlmodule.c
270273

Modules/cryptmodule.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
*/
33

44
#include "allobjects.h"
5-
#include "modsupport.h"
65

76
#include <sys/types.h>
87

Modules/signalmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
5757
generated by the keyboard (e.g. SIGINT) are delivered to all
5858
threads (e.g. SGI), while in others (e.g. Solaris) such signals are
5959
delivered to one random thread (an intermediate possibility would
60-
be to deliver it to the main thread -- POSIX???). For now, we have
60+
be to deliver it to the main thread -- POSIX?). For now, we have
6161
a working implementation that works in all three cases -- the
6262
handler ignores signals if getpid() isn't the same as in the main
6363
thread. XXX This is a hack.

0 commit comments

Comments
 (0)