]> granicus.if.org Git - python/commitdiff
initalize -> initialize
authorBenjamin Peterson <benjamin@python.org>
Sat, 18 Apr 2009 20:25:25 +0000 (20:25 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 18 Apr 2009 20:25:25 +0000 (20:25 +0000)
Objects/object.c

index b8f135219888f56e2bfc757368da01614dc26638..8abe200be6aeaf42f40ecccec51cabfab168e5eb 100644 (file)
@@ -2087,7 +2087,7 @@ _Py_ReadyTypes(void)
                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_ReadyTypes(void)
                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");
 }