[Python-checkins] r75434 - python/trunk/Objects/bytearrayobject.c

mark.dickinson python-checkins at python.org
Thu Oct 15 17:18:56 CEST 2009


Author: mark.dickinson
Date: Thu Oct 15 17:18:55 2009
New Revision: 75434

Log:
Fix missing semicolon

Modified:
   python/trunk/Objects/bytearrayobject.c

Modified: python/trunk/Objects/bytearrayobject.c
==============================================================================
--- python/trunk/Objects/bytearrayobject.c	(original)
+++ python/trunk/Objects/bytearrayobject.c	Thu Oct 15 17:18:55 2009
@@ -3120,7 +3120,7 @@
         latin1 = PyUnicode_DecodeLatin1(self->ob_bytes,
                                         Py_SIZE(self), NULL);
 #else
-        latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self))
+        latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self));
 #endif
     else
 #ifdef Py_USING_UNICODE


More information about the Python-checkins mailing list