[Python-checkins] python/dist/src/Objects complexobject.c,2.66,2.67

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Tue, 17 Jun 2003 13:22:26 -0700


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

Modified Files:
	complexobject.c 
Log Message:
Fix typo in comment.


Index: complexobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/complexobject.c,v
retrieving revision 2.66
retrieving revision 2.67
diff -C2 -d -r2.66 -r2.67
*** complexobject.c	2 Mar 2003 13:51:47 -0000	2.66
--- complexobject.c	17 Jun 2003 20:22:24 -0000	2.67
***************
*** 832,836 ****
  		return NULL;
  
! 	/* Special-case for single argumet that is already complex */
  	if (PyComplex_CheckExact(r) && i == NULL &&
  	    type == &PyComplex_Type) {
--- 832,836 ----
  		return NULL;
  
! 	/* Special-case for single argument that is already complex */
  	if (PyComplex_CheckExact(r) && i == NULL &&
  	    type == &PyComplex_Type) {