summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-18 20:25:25 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-18 20:25:25 (GMT)
commit5ce73759bf9d3d84e1270ea08b8de55b57e3278b (patch)
treeaf79e5f81ef422fb2dbf982c86f6ae70f0446080 /Objects
parentd4d400cb8a87a0960936d644a750f896a73c46d6 (diff)
downloadcpython-5ce73759bf9d3d84e1270ea08b8de55b57e3278b.zip
cpython-5ce73759bf9d3d84e1270ea08b8de55b57e3278b.tar.gz
cpython-5ce73759bf9d3d84e1270ea08b8de55b57e3278b.tar.bz2
initalize -> initialize
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/object.c b/Objects/object.c
index b8f1352..8abe200 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");
}