[Python-checkins] CVS: python/dist/src/Python ceval.c,2.270,2.271

Sjoerd Mullender sjoerd@users.sourceforge.net
Thu, 30 Aug 2001 07:05:23 -0700


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

Modified Files:
	ceval.c 
Log Message:
Removed some unreachable break statements to silence SGI compiler.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.270
retrieving revision 2.271
diff -C2 -d -r2.270 -r2.271
*** ceval.c	2001/08/23 02:58:07	2.270
--- ceval.c	2001/08/30 14:05:20	2.271
***************
*** 3050,3054 ****
  			return result;
  		}
- 		break;
  	case METH_NOARGS:
  		if (na == 0)
--- 3050,3053 ----
***************
*** 3058,3062 ****
  			     ((PyCFunctionObject*)func)->m_ml->ml_name, na);
  		return NULL;
- 		break;
  	case METH_O:
  		if (na == 1) {
--- 3057,3060 ----
***************
*** 3070,3074 ****
  			     ((PyCFunctionObject*)func)->m_ml->ml_name, na);
  		return NULL;
- 		break;
  	default:
  		fprintf(stderr, "%.200s() flags = %d\n", 
--- 3068,3071 ----