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

Trent Mick python-dev@python.org
Wed, 4 Oct 2000 13:57:32 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory slayer.i.sourceforge.net:/tmp/cvs-serv31317/PC

Modified Files:
	config.c 
Log Message:
Enable the binascii module for Win64. It builds and passes the test suite.
(I had explicitly disabled it a while ago, possibly unecessarily, along with
rgbimg, audioop, and imageop, which are advertised as "not for 64-bit
platforms.)



Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** config.c	2000/09/01 23:29:27	1.28
--- config.c	2000/10/04 20:57:29	1.29
***************
*** 9,14 ****
  #ifndef MS_WIN64
  extern void initaudioop(void);
- extern void initbinascii(void);
  #endif
  extern void initcmath(void);
  extern void initerrno(void);
--- 9,14 ----
  #ifndef MS_WIN64
  extern void initaudioop(void);
  #endif
+ extern void initbinascii(void);
  extern void initcmath(void);
  extern void initerrno(void);
***************
*** 57,63 ****
  #endif
  #endif
- #ifndef MS_WIN64
          {"binascii", initbinascii},
- #endif
          {"cmath", initcmath},
          {"errno", initerrno},
--- 57,61 ----