diff options
| author | Benjamin Peterson <benjamin@python.org> | 2009-04-19 02:40:43 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2009-04-19 02:40:43 (GMT) |
| commit | 8cfa8e613f34c24914f06c0da9d283d573c54b5b (patch) | |
| tree | 90253da7525d1528ff9ba3c81534e68e2c4ec021 /Objects/object.c | |
| parent | 308c6ba002c4332b8c6373e658da1764ddc1970c (diff) | |
| download | cpython-8cfa8e613f34c24914f06c0da9d283d573c54b5b.zip cpython-8cfa8e613f34c24914f06c0da9d283d573c54b5b.tar.gz cpython-8cfa8e613f34c24914f06c0da9d283d573c54b5b.tar.bz2 | |
make errors consistent
Diffstat (limited to 'Objects/object.c')
| -rw-r--r-- | Objects/object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/object.c b/Objects/object.c index 5c7f0fb..6254dfa 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -2052,10 +2052,10 @@ _Py_ReadyTypes(void) 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"); |
