[Python-3000-checkins] r57658 - python/branches/py3k/Objects/unicodeobject.c

guido.van.rossum python-3000-checkins at python.org
Wed Aug 29 16:05:23 CEST 2007


Author: guido.van.rossum
Date: Wed Aug 29 16:05:23 2007
New Revision: 57658

Modified:
   python/branches/py3k/Objects/unicodeobject.c
Log:
Oops, remove an abort() I put in for debugging.


Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Wed Aug 29 16:05:23 2007
@@ -8107,7 +8107,6 @@
 
     if (flags & PyBUF_CHARACTER) {
         PyErr_SetString(PyExc_SystemError, "can't use str as char buffer");
-        abort();
         return -1;
     }
     return PyBuffer_FillInfo(view, (void *)self->str,


More information about the Python-3000-checkins mailing list