diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-10 23:43:14 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-10 23:43:14 (GMT) |
commit | cc3b8d6883f52391c59f59e82bfa1840e2847d90 (patch) | |
tree | c217e1e82319e7408e9d42fd55f23e3964542966 /Python | |
parent | a6bb9849735e859067227f66963a6c345a0a1c72 (diff) | |
download | cpython-cc3b8d6883f52391c59f59e82bfa1840e2847d90.zip cpython-cc3b8d6883f52391c59f59e82bfa1840e2847d90.tar.gz cpython-cc3b8d6883f52391c59f59e82bfa1840e2847d90.tar.bz2 |
bytes -> bytearray
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c75f55f..e7a0512 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(); |