diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-16 14:19:43 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-16 14:19:43 (GMT) |
commit | b526e5fa992a79b92be948bbc0c433f8946423f3 (patch) | |
tree | b2b97824e322cf2591c470abcefe3c04a2174931 /Modules/Setup.in | |
parent | a136d4970c6a54e8365314238a7ab0a7aa49ad26 (diff) | |
download | cpython-b526e5fa992a79b92be948bbc0c433f8946423f3.zip cpython-b526e5fa992a79b92be948bbc0c433f8946423f3.tar.gz cpython-b526e5fa992a79b92be948bbc0c433f8946423f3.tar.bz2 |
The socket module is now _socket on all platforms.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index df0958a..aec41de 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -152,8 +152,7 @@ grp grpmodule.c # grp(3) errno errnomodule.c # posix (UNIX) errno values mmap mmapmodule.c # Memory-mapped files (also works on Win32) select selectmodule.c # select(2); not on ancient System V -socket socketmodule.c # socket(2); not on ancient System V -#_socket socketmodule.c # socket(2); use this one for BeOS sockets +_socket socketmodule.c # socket(2) # Socket module compiled with SSL support; you must edit the SSL variable: #SSL=/usr/local/ssl |