diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-04-10 19:50:36 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-04-10 19:50:36 (GMT) |
commit | 2ea2968064e1868cc187754d6d9349c2e68b7734 (patch) | |
tree | 0585da4ef80d8d939259ef7e4a7b21a45ab646ba | |
parent | 36a59b4a08ec297d0caabd5ff60375f6fd1d236f (diff) | |
download | cpython-2ea2968064e1868cc187754d6d9349c2e68b7734.zip cpython-2ea2968064e1868cc187754d6d9349c2e68b7734.tar.gz cpython-2ea2968064e1868cc187754d6d9349c2e68b7734.tar.bz2 |
get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code.
-rw-r--r-- | Objects/bytesobject.c | 1 | ||||
-rw-r--r-- | Objects/stringobject.c | 1 | ||||
-rw-r--r-- | Objects/unicodeobject.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index af7a1b1..0b40f83 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -160,7 +160,6 @@ PyBytes_FromStringAndSize(const char *bytes, Py_ssize_t size) PyBytesObject *new; Py_ssize_t alloc; - assert(size >= 0); if (size < 0) { PyErr_SetString(PyExc_SystemError, "Negative size passed to PyBytes_FromStringAndSize"); diff --git a/Objects/stringobject.c b/Objects/stringobject.c index f4b4264..9f154f3 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -55,7 +55,6 @@ PyObject * PyString_FromStringAndSize(const char *str, Py_ssize_t size) { register PyStringObject *op; - assert(size >= 0); if (size < 0) { PyErr_SetString(PyExc_SystemError, "Negative size passed to PyString_FromStringAndSize"); diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 4337972..a8e0e11 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -466,7 +466,6 @@ PyObject *PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) { PyUnicodeObject *unicode; - assert(size <= 0); if (size < 0) { PyErr_SetString(PyExc_SystemError, "Negative size passed to PyUnicode_FromStringAndSize"); |