[Python-checkins] CVS: python/dist/src/Objects dictobject.c,2.111,2.112

Tim Peters tim_one@users.sourceforge.net
Sun, 02 Sep 2001 11:35:56 -0700


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

Modified Files:
	dictobject.c 
Log Message:
Repair typo in comment.


Index: dictobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v
retrieving revision 2.111
retrieving revision 2.112
diff -C2 -d -r2.111 -r2.112
*** dictobject.c	2001/09/02 08:22:48	2.111
--- dictobject.c	2001/09/02 18:35:54	2.112
***************
*** 1704,1708 ****
  	if (arg != NULL) {
  		if (PyDict_Merge(self, arg, 1) < 0) {
! 			/* An error like "AttibuteError: keys" is too
  			   cryptic in this context. */
  			if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
--- 1704,1708 ----
  	if (arg != NULL) {
  		if (PyDict_Merge(self, arg, 1) < 0) {
! 			/* An error like "AttributeError: keys" is too
  			   cryptic in this context. */
  			if (PyErr_ExceptionMatches(PyExc_AttributeError)) {