Commit e2ace6a4 authored by Guido van Rossum's avatar Guido van Rossum

Oops, remove an abort() I put in for debugging.

parent 649e2ad8
......@@ -8107,7 +8107,6 @@ unicode_buffer_getbuffer(PyUnicodeObject *self, PyBuffer *view, int flags)
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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment