[Python-checkins] python/dist/src/Objects floatobject.c, 2.124, 2.125 object.c, 2.212, 2.213

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Wed Nov 19 20:45:00 EST 2003


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv1623/Objects

Modified Files:
	floatobject.c object.c 
Log Message:
Getting rid of all the code inside #ifdef macintosh too.


Index: floatobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/floatobject.c,v
retrieving revision 2.124
retrieving revision 2.125
diff -C2 -d -r2.124 -r2.125
*** floatobject.c	28 Jun 2003 20:04:24 -0000	2.124
--- floatobject.c	20 Nov 2003 01:44:58 -0000	2.125
***************
*** 9,13 ****
  #include <ctype.h>
  
! #if !defined(__STDC__) && !defined(macintosh)
  extern double fmod(double, double);
  extern double pow(double, double);
--- 9,13 ----
  #include <ctype.h>
  
! #if !defined(__STDC__)
  extern double fmod(double, double);
  extern double pow(double, double);

Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.212
retrieving revision 2.213
diff -C2 -d -r2.212 -r2.213
*** object.c	19 Nov 2003 15:24:47 -0000	2.212
--- object.c	20 Nov 2003 01:44:58 -0000	2.213
***************
*** 4,11 ****
  #include "Python.h"
  
- #ifdef macintosh
- #include "macglue.h"
- #endif
- 
  #ifdef Py_REF_DEBUG
  long _Py_RefTotal;
--- 4,7 ----





More information about the Python-checkins mailing list