Author: neal.norwitz
Date: Sun Aug 26 05:58:25 2007
New Revision: 57494

Modified:
   python/branches/py3k/Objects/unicodeobject.c
Log:
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.


Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c        (original)
+++ python/branches/py3k/Objects/unicodeobject.c        Sun Aug 26 05:58:25 2007
@@ -9209,8 +9209,6 @@
                 PyObject *conversion_str = NULL;
                 PyObject *result = NULL;
 
-                assert(result == 2);
-
                 is_markup_bool = PyBool_FromLong(is_markup);
                 if (!is_markup_bool)
                     goto error;
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to