[Python-checkins] python/dist/src/Objects dictobject.c,2.160,2.161

mondragon at users.sourceforge.net mondragon at users.sourceforge.net
Fri Jun 18 15:57:16 EDT 2004


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

Modified Files:
	dictobject.c 
Log Message:
Disabling end-of-loop code not reached warning on SunPro


Index: dictobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v
retrieving revision 2.160
retrieving revision 2.161
diff -C2 -d -r2.160 -r2.161
*** dictobject.c	28 May 2004 20:59:21 -0000	2.160
--- dictobject.c	18 Jun 2004 19:57:13 -0000	2.161
***************
*** 10,13 ****
--- 10,17 ----
  #include "Python.h"
  
+ #ifdef __SUNPRO_C
+ #pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
+ #endif
+ 
  typedef PyDictEntry dictentry;
  typedef PyDictObject dictobject;




More information about the Python-checkins mailing list