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 /Objects/stringobject.c | |
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.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
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"); |