summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-05-10 23:43:14 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-05-10 23:43:14 (GMT)
commitcc3b8d6883f52391c59f59e82bfa1840e2847d90 (patch)
treec217e1e82319e7408e9d42fd55f23e3964542966 /Python/pythonrun.c
parenta6bb9849735e859067227f66963a6c345a0a1c72 (diff)
downloadcpython-cc3b8d6883f52391c59f59e82bfa1840e2847d90.zip
cpython-cc3b8d6883f52391c59f59e82bfa1840e2847d90.tar.gz
cpython-cc3b8d6883f52391c59f59e82bfa1840e2847d90.tar.bz2
bytes -> bytearray
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
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();