[Zope3-checkins] SVN: zope.testing/trunk/src/zope/testing/doctest.txt Tests for LP #561568
Adam Groszer
agroszer at gmail.com
Fri Apr 16 10:47:52 EDT 2010
Log message for revision 110975:
Tests for LP #561568
Changed:
U zope.testing/trunk/src/zope/testing/doctest.txt
-=-
Modified: zope.testing/trunk/src/zope/testing/doctest.txt
===================================================================
--- zope.testing/trunk/src/zope/testing/doctest.txt 2010-04-16 14:47:34 UTC (rev 110974)
+++ zope.testing/trunk/src/zope/testing/doctest.txt 2010-04-16 14:47:52 UTC (rev 110975)
@@ -47,3 +47,12 @@
>>> print u'\xe9'.encode('utf-8')
é
+
+Tests for LP #561568:
+
+ >>> v = u'foo\xe9bar'
+ >>> v # doctest: +ELLIPSIS
+ u'foo...bar'
+
+ >>> v.encode('utf-8') # doctest: +ELLIPSIS
+ 'foo...bar'
More information about the Zope3-Checkins
mailing list