[Zope3-checkins] SVN: zope.testing/trunk/ Added tests for LP #144569 and #69988.
Tres Seaver
tseaver at palladion.com
Thu Apr 8 11:05:06 EDT 2010
Log message for revision 110640:
Added tests for LP #144569 and #69988.
- https://bugs.launchpad.net/bugs/69988
- https://bugs.launchpad.net/zope3/+bug/144569
Changed:
U zope.testing/trunk/CHANGES.txt
U zope.testing/trunk/src/zope/testing/doctest.txt
-=-
Modified: zope.testing/trunk/CHANGES.txt
===================================================================
--- zope.testing/trunk/CHANGES.txt 2010-04-08 14:22:47 UTC (rev 110639)
+++ zope.testing/trunk/CHANGES.txt 2010-04-08 15:05:06 UTC (rev 110640)
@@ -4,9 +4,13 @@
3.9.4 (unreleased)
==================
-- Nothing changed yet.
+- Added tests for LP #144569 and #69988.
+ https://bugs.launchpad.net/bugs/69988
+ https://bugs.launchpad.net/zope3/+bug/144569
+
+
3.9.3 (2010-03-26)
==================
Modified: zope.testing/trunk/src/zope/testing/doctest.txt
===================================================================
--- zope.testing/trunk/src/zope/testing/doctest.txt 2010-04-08 14:22:47 UTC (rev 110639)
+++ zope.testing/trunk/src/zope/testing/doctest.txt 2010-04-08 15:05:06 UTC (rev 110640)
@@ -37,3 +37,13 @@
This section is about regression tests of ``zope.testing`` itself.
>>> from zope.testing.doctest import *
+
+LP #69988 and #144569 both assert that doctests fail when rendering
+non-ASCII output with a UnicodeDecodeError. However, this does not appear
+to be so:
+
+ >>> print u'abc'
+ abc
+
+ >>> print u'\xe9'.encode('utf-8')
+ é
More information about the Zope3-Checkins
mailing list