[Python-checkins] r71739 - python/trunk/Objects/object.c

benjamin.peterson python-checkins at python.org
Sun Apr 19 04:40:43 CEST 2009


Author: benjamin.peterson
Date: Sun Apr 19 04:40:43 2009
New Revision: 71739

Log:
make errors consistent

Modified:
   python/trunk/Objects/object.c

Modified: python/trunk/Objects/object.c
==============================================================================
--- python/trunk/Objects/object.c	(original)
+++ python/trunk/Objects/object.c	Sun Apr 19 04:40:43 2009
@@ -2052,10 +2052,10 @@
 		Py_FatalError("Can't initialize str type");
 
 	if (PyType_Ready(&PyByteArray_Type) < 0)
-		Py_FatalError("Can't initialize bytearray");
+		Py_FatalError("Can't initialize bytearray type");
 
 	if (PyType_Ready(&PyList_Type) < 0)
-		Py_FatalError("Can't initialize list");
+		Py_FatalError("Can't initialize list type");
 
 	if (PyType_Ready(&PyNone_Type) < 0)
 		Py_FatalError("Can't initialize None type");


More information about the Python-checkins mailing list