From: Benjamin Peterson Date: Sat, 18 Apr 2009 20:25:25 +0000 (+0000) Subject: initalize -> initialize X-Git-Tag: v2.7a1~1456 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ce73759bf9d3d84e1270ea08b8de55b57e3278b;p=python initalize -> initialize --- diff --git a/Objects/object.c b/Objects/object.c index b8f1352198..8abe200be6 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -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"); }