diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-26 03:58:25 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-26 03:58:25 (GMT) |
commit | 571861d3d323affd1f9283d6cc56d8f682037d2b (patch) | |
tree | d5794db74131b6c20e223daad13b3cf39cba3fa6 | |
parent | 7e95befeda7c2c11a47001e96e2eb61ff5fd9287 (diff) | |
download | cpython-571861d3d323affd1f9283d6cc56d8f682037d2b.zip cpython-571861d3d323affd1f9283d6cc56d8f682037d2b.tar.gz cpython-571861d3d323affd1f9283d6cc56d8f682037d2b.tar.bz2 |
Remove assert that seems out of place. It triggers with test_string,
but without it test_string passes. I'm not sure why it was there.
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 3052ebd..fe23b00 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -9209,8 +9209,6 @@ formatteriter_next(formatteriterobject *it) PyObject *conversion_str = NULL; PyObject *result = NULL; - assert(result == 2); - is_markup_bool = PyBool_FromLong(is_markup); if (!is_markup_bool) goto error; |