[Python-checkins] r64772 - python/trunk/Objects/abstract.c

skip.montanaro python-checkins at python.org
Mon Jul 7 13:16:14 CEST 2008


Author: skip.montanaro
Date: Mon Jul  7 13:16:14 2008
New Revision: 64772

Log:
Correct grammar.


Modified:
   python/trunk/Objects/abstract.c

Modified: python/trunk/Objects/abstract.c
==============================================================================
--- python/trunk/Objects/abstract.c	(original)
+++ python/trunk/Objects/abstract.c	Mon Jul  7 13:16:14 2008
@@ -1946,7 +1946,7 @@
 		return m->sq_item(s, i);
 	}
 
-	return type_error("'%.200s' object is unindexable", s);
+	return type_error("'%.200s' object does not support indexing", s);
 }
 
 PyObject *


More information about the Python-checkins mailing list