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

Tim Peters python-dev@python.org
Tue, 09 Jan 2001 15:26:41 -0800


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv31420/python/dist/src/PC

Modified Files:
	config.c 
Log Message:
Assorted xreadlines problems:
    Wasn't built on Windows; not in config.c either.
    Module init function missing DL_EXPORT magic.
    test_xreadline output file obviously wrong (started w/ "test_xrl").
    test program very unclear about what was expected.


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** config.c	2000/10/04 20:57:29	1.29
--- config.c	2001/01/09 23:26:39	1.30
***************
*** 43,47 ****
--- 43,49 ----
  #endif
  extern void init_codecs(void);
+ extern void initxreadlines(void);
  
+ /* XXX tim: what's the purpose of ADDMODULE MARKER? */
  /* -- ADDMODULE MARKER 1 -- */
  
***************
*** 93,97 ****
--- 95,101 ----
  
          {"_codecs", init_codecs},
+ 	{"xreadlines", initxreadlines},
  
+ /* XXX tim: what's the purpose of ADDMODULE MARKER? */
  /* -- ADDMODULE MARKER 2 -- */