From: Benjamin Peterson Date: Sun, 10 May 2009 23:43:14 +0000 (+0000) Subject: bytes -> bytearray X-Git-Tag: v3.1rc1~181 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc3b8d6883f52391c59f59e82bfa1840e2847d90;p=python bytes -> bytearray --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c75f55fe9a..e7a051288d 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -212,7 +212,7 @@ Py_InitializeEx(int install_sigs) Py_FatalError("Py_Initialize: can't init longs"); if (!PyByteArray_Init()) - Py_FatalError("Py_Initialize: can't init bytes"); + Py_FatalError("Py_Initialize: can't init bytearray"); _PyFloat_Init();