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,
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to