[Python-checkins] CVS: python/dist/src/PC config.c,1.19,1.20

Guido van Rossum python-dev@python.org
Thu, 6 Apr 2000 10:41:14 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/PC
In directory eric:/projects/python/develop/guido/src/PC

Modified Files:
	config.c 
Log Message:
Remove _socket, select, soundex, and unicodedata.  These have been
moved to their own DLLs, or are obsolete (soundex).


Index: config.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/PC/config.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** config.c	2000/03/11 00:13:09	1.19
--- config.c	2000/04/06 14:41:11	1.20
***************
*** 53,59 ****
  extern void initsignal();
  extern void initsha();
- extern void initselect();
- extern void init_socket();
- extern void initsoundex();
  extern void initstrop();
  extern void initstruct();
--- 53,56 ----
***************
*** 69,73 ****
  #endif
  extern void init_codecs();
- extern void initunicodedata();
  
  /* -- ADDMODULE MARKER 1 -- */
--- 66,69 ----
***************
*** 96,104 ****
          {"signal", initsignal},
          {"sha", initsha},
- #ifdef USE_SOCKET
-         {"_socket", init_socket},
-         {"select", initselect},
- #endif
-         {"soundex", initsoundex},
          {"strop", initstrop},
          {"struct", initstruct},
--- 92,95 ----
***************
*** 117,121 ****
  
  	{"_codecs", init_codecs},
- 	{"unicodedata", initunicodedata},
  
  /* -- ADDMODULE MARKER 2 -- */
--- 108,111 ----