[Python-checkins] python/dist/src/Modules collectionsmodule.c, 1.1, 1.2

rhettinger at projects.sourceforge.net rhettinger at projects.sourceforge.net
Thu Jan 29 02:29:35 EST 2004


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

Modified Files:
	collectionsmodule.c 
Log Message:
Fix spelling.

Index: collectionsmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/collectionsmodule.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** collectionsmodule.c	29 Jan 2004 06:37:51 -0000	1.1
--- collectionsmodule.c	29 Jan 2004 07:29:32 -0000	1.2
***************
*** 110,114 ****
  
  	if (deque->len == 0) {
! 		PyErr_SetString(PyExc_LookupError, "pop from an emtpy deque");
  		return NULL;
  	}
--- 110,114 ----
  
  	if (deque->len == 0) {
! 		PyErr_SetString(PyExc_LookupError, "pop from an empty deque");
  		return NULL;
  	}
***************
*** 145,149 ****
  
  	if (deque->len == 0) {
! 		PyErr_SetString(PyExc_LookupError, "pop from an emtpy deque");
  		return NULL;
  	}
--- 145,149 ----
  
  	if (deque->len == 0) {
! 		PyErr_SetString(PyExc_LookupError, "pop from an empty deque");
  		return NULL;
  	}




More information about the Python-checkins mailing list