[Python-checkins] python/dist/src/PC config.c,1.48,1.49

perky at users.sourceforge.net perky at users.sourceforge.net
Wed Jul 28 11:39:57 CEST 2004


Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10188

Modified Files:
	config.c 
Log Message:
Add missing _codecs_iso2022 module of cjkcodecs.  I'll add unittest
for it soon.


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** config.c	18 Jul 2004 05:06:31 -0000	1.48
--- config.c	28 Jul 2004 09:39:54 -0000	1.49
***************
*** 60,63 ****
--- 60,64 ----
  extern void init_codecs_cn(void);
  extern void init_codecs_hk(void);
+ extern void init_codecs_iso2022(void);
  extern void init_codecs_jp(void);
  extern void init_codecs_kr(void);
***************
*** 133,136 ****
--- 134,138 ----
  	{"_codecs_cn", init_codecs_cn},
  	{"_codecs_hk", init_codecs_hk},
+ 	{"_codecs_iso2022", init_codecs_iso2022},
  	{"_codecs_jp", init_codecs_jp},
  	{"_codecs_kr", init_codecs_kr},



More information about the Python-checkins mailing list