summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-08-29 14:05:23 (GMT)
committerGuido van Rossum <guido@python.org>2007-08-29 14:05:23 (GMT)
commitb3cf6fd58ecf74c669b8bae2d7804182565f879f (patch)
treeb65b6e72614c4365167d54b916a4979088b95a23 /Objects/unicodeobject.c
parent04c70ad9716b6059762fa0bb9e5ddd0e93694af3 (diff)
downloadcpython-b3cf6fd58ecf74c669b8bae2d7804182565f879f.zip
cpython-b3cf6fd58ecf74c669b8bae2d7804182565f879f.tar.gz
cpython-b3cf6fd58ecf74c669b8bae2d7804182565f879f.tar.bz2
Oops, remove an abort() I put in for debugging.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 9de1e53..994456d 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -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,