commit | 9c4756ea265b5ebd71c9ae59f3673c7cecb6f060 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Mon May 26 13:22:05 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Mon May 26 13:22:05 2008 +0000 |
tree | 642b21e774a9cb2d949e10ce65e7d10326c70138 | |
parent | 96d02f3c1e145821cd5ce8817d4263e7d8d57e4a [diff] [blame] |
Renamed PyBytes to PyByteArray
diff --git a/Objects/object.c b/Objects/object.c index 0d317b2..5dc3436 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -1495,7 +1495,7 @@ if (PyType_Ready(&PyBool_Type) < 0) Py_FatalError("Can't initialize 'bool'"); - if (PyType_Ready(&PyBytes_Type) < 0) + if (PyType_Ready(&PyByteArray_Type) < 0) Py_FatalError("Can't initialize 'bytes'"); if (PyType_Ready(&PyString_Type) < 0)