Whitespace normalization.

This commit is contained in:
Tim Peters 2001-10-04 05:36:56 +00:00
parent 2f93e28a19
commit 527e64fd68
18 changed files with 65 additions and 65 deletions

View file

@ -409,7 +409,7 @@ utfTests = [(u'A\u2262\u0391.', 'A+ImIDkQ.'), # RFC2152 example
for x,y in utfTests:
verify( x.encode('utf-7') == y )
try:
try:
unicode('+3ADYAA-', 'utf-7') # surrogates not supported
except UnicodeError:
pass