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

benjamin.peterson python-checkins at python.org
Sat Apr 18 22:25:25 CEST 2009


Author: benjamin.peterson
Date: Sat Apr 18 22:25:25 2009
New Revision: 71725

Log:
initalize -> initialize

Modified:
   python/trunk/Objects/object.c

Modified: python/trunk/Objects/object.c
==============================================================================
--- python/trunk/Objects/object.c	(original)
+++ python/trunk/Objects/object.c	Sat Apr 18 22:25:25 2009
@@ -2087,7 +2087,7 @@
 		Py_FatalError("Can't initalize complex type");
 
 	if (PyType_Ready(&PyFloat_Type) < 0)
-		Py_FatalError("Can't initalize float type");
+		Py_FatalError("Can't initialize float type");
 
 	if (PyType_Ready(&PyBuffer_Type) < 0)
 		Py_FatalError("Can't initialize buffer type");
@@ -2108,13 +2108,13 @@
 		Py_FatalError("Can't initialize memoryview type");
 
 	if (PyType_Ready(&PyTuple_Type) < 0)
-		Py_FatalError("Can't initalize tuple type");
+		Py_FatalError("Can't initialize tuple type");
 
 	if (PyType_Ready(&PyEnum_Type) < 0)
-		Py_FatalError("Can't initalize enumerate type");
+		Py_FatalError("Can't initialize enumerate type");
 
 	if (PyType_Ready(&PyReversed_Type) < 0)
-		Py_FatalError("Can't initalize reversed type");
+		Py_FatalError("Can't initialize reversed type");
 }
 
 


More information about the Python-checkins mailing list