[Python-checkins] python/dist/src/Objects complexobject.c,2.60,2.61

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Thu, 13 Jun 2002 10:07:51 -0700


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

Modified Files:
	complexobject.c 
Log Message:
Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from
pyconfig.h.


Index: complexobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/complexobject.c,v
retrieving revision 2.60
retrieving revision 2.61
diff -C2 -d -r2.60 -r2.61
*** complexobject.c	6 Jun 2002 15:45:38 -0000	2.60
--- complexobject.c	13 Jun 2002 17:07:07 -0000	2.61
***************
*** 6,13 ****
  /* Submitted by Jim Hugunin */
  
- #ifndef WITHOUT_COMPLEX
- 
  #include "Python.h"
  #include "structmember.h"
  
  /* Precisions used by repr() and str(), respectively.
--- 6,13 ----
  /* Submitted by Jim Hugunin */
  
  #include "Python.h"
  #include "structmember.h"
+ 
+ #ifndef WITHOUT_COMPLEX
  
  /* Precisions used by repr() and str(), respectively.