diff options
author | Guido van Rossum <guido@python.org> | 1992-06-23 09:07:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-06-23 09:07:03 (GMT) |
commit | ed233a56963233bbd646fdac01e55c9fdec50a30 (patch) | |
tree | 590cee6874280421f9288568015bf9b30326b8ed /Modules/config.c.in | |
parent | 5dc8eb0914a6fcea604a6626af9e63120e84b527 (diff) | |
download | cpython-ed233a56963233bbd646fdac01e55c9fdec50a30.zip cpython-ed233a56963233bbd646fdac01e55c9fdec50a30.tar.gz cpython-ed233a56963233bbd646fdac01e55c9fdec50a30.tar.bz2 |
Changes for new UNIX-specific built-in module 'select' and new header for
interfaces to variants of select() system call, "myselect.h". This includes
adding fileno() methods to files, sockets and stdwin.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index fb33b1c..0973b77 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -34,7 +34,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef __DATE__ #define DATE __DATE__ #else -#define DATE ">= 3 Jun 1992" +#define DATE ">= 23 Jun 1992" #endif #include <stdio.h> @@ -122,6 +122,7 @@ extern void initposix(); extern void initpwd(); extern void initgrp(); extern void initmarshal(); +extern void initselect(); #ifdef USE_AUDIO extern void initaudio(); @@ -171,6 +172,7 @@ struct { {"pwd", initpwd}, {"grp", initgrp}, {"marshal", initmarshal}, + {"select", initselect}, /* Optional modules */ |