diff options
author | Guido van Rossum <guido@python.org> | 2000-04-06 14:41:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-04-06 14:41:11 (GMT) |
commit | f4a3bd4991ee544d2af90cf620aa0e6c97529802 (patch) | |
tree | 620b5214d279247695ce7249ffd6c0d05e4593f8 /PC | |
parent | 2097ef126bbf2e4a152bb691c89b43ce1d7d41b4 (diff) | |
download | cpython-f4a3bd4991ee544d2af90cf620aa0e6c97529802.zip cpython-f4a3bd4991ee544d2af90cf620aa0e6c97529802.tar.gz cpython-f4a3bd4991ee544d2af90cf620aa0e6c97529802.tar.bz2 |
Remove _socket, select, soundex, and unicodedata. These have been
moved to their own DLLs, or are obsolete (soundex).
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/PC/config.c b/PC/config.c index 2efd6c2..cd17857 100644 --- a/PC/config.c +++ b/PC/config.c @@ -52,9 +52,6 @@ extern void initrgbimg(); extern void initrotor(); extern void initsignal(); extern void initsha(); -extern void initselect(); -extern void init_socket(); -extern void initsoundex(); extern void initstrop(); extern void initstruct(); extern void inittime(); @@ -68,7 +65,6 @@ extern void initwinsound(); extern void init_locale(); #endif extern void init_codecs(); -extern void initunicodedata(); /* -- ADDMODULE MARKER 1 -- */ @@ -95,11 +91,6 @@ struct _inittab _PyImport_Inittab[] = { {"rotor", initrotor}, {"signal", initsignal}, {"sha", initsha}, -#ifdef USE_SOCKET - {"_socket", init_socket}, - {"select", initselect}, -#endif - {"soundex", initsoundex}, {"strop", initstrop}, {"struct", initstruct}, {"time", inittime}, @@ -116,7 +107,6 @@ struct _inittab _PyImport_Inittab[] = { #endif {"_codecs", init_codecs}, - {"unicodedata", initunicodedata}, /* -- ADDMODULE MARKER 2 -- */ |