[Python-checkins] r72557 - python/branches/py3k/Python/pythonrun.c

benjamin.peterson python-checkins at python.org
Mon May 11 01:43:14 CEST 2009


Author: benjamin.peterson
Date: Mon May 11 01:43:14 2009
New Revision: 72557

Log:
bytes -> bytearray

Modified:
   python/branches/py3k/Python/pythonrun.c

Modified: python/branches/py3k/Python/pythonrun.c
==============================================================================
--- python/branches/py3k/Python/pythonrun.c	(original)
+++ python/branches/py3k/Python/pythonrun.c	Mon May 11 01:43:14 2009
@@ -212,7 +212,7 @@
 		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();
 


More information about the Python-checkins mailing list