[Python-checkins] python/dist/src/Modules _sre.c, 2.106, 2.107 collectionsmodule.c, 1.19, 1.20

mondragon at users.sourceforge.net mondragon at users.sourceforge.net
Thu Jul 15 17:54:08 CEST 2004


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

Modified Files:
	_sre.c collectionsmodule.c 
Log Message:
Moved SunPro warning suppression into pyport.h and out of individual
modules and objects.


Index: _sre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v
retrieving revision 2.106
retrieving revision 2.107
diff -C2 -d -r2.106 -r2.107
*** _sre.c	17 Jun 2004 18:27:16 -0000	2.106
--- _sre.c	15 Jul 2004 15:54:04 -0000	2.107
***************
*** 35,42 ****
   */
  
- #ifdef __SUNPRO_C
- #pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
- #endif
- 
  #ifndef SRE_RECURSIVE
  
--- 35,38 ----

Index: collectionsmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/collectionsmodule.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** collectionsmodule.c	9 Jul 2004 04:10:20 -0000	1.19
--- collectionsmodule.c	15 Jul 2004 15:54:04 -0000	1.20
***************
*** 2,9 ****
  #include "structmember.h"
  
- #ifdef __SUNPRO_C
- #pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
- #endif
- 
  /* collections module implementation of a deque() datatype
     Written and maintained by Raymond D. Hettinger <python at rcn.com>
--- 2,5 ----



More information about the Python-checkins mailing list