[Python-checkins] r85863 - in python/branches/release27-maint: Lib/test/test_sax.py Lib/test/test_unicode.py

antoine.pitrou python-checkins at python.org
Wed Oct 27 20:58:04 CEST 2010


Author: antoine.pitrou
Date: Wed Oct 27 20:58:04 2010
New Revision: 85863

Log:
Merged revisions 85861 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85861 | antoine.pitrou | 2010-10-27 20:52:48 +0200 (mer., 27 oct. 2010) | 3 lines
  
  Recode modules from latin-1 to utf-8
........


Modified:
   python/branches/release27-maint/   (props changed)
   python/branches/release27-maint/Lib/test/test_sax.py
   python/branches/release27-maint/Lib/test/test_unicode.py

Modified: python/branches/release27-maint/Lib/test/test_sax.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_sax.py	(original)
+++ python/branches/release27-maint/Lib/test/test_sax.py	Wed Oct 27 20:58:04 2010
@@ -1,4 +1,4 @@
-# regression test for SAX 2.0            -*- coding: iso-8859-1 -*-
+# regression test for SAX 2.0            -*- coding: utf-8 -*-
 # $Id$
 
 from xml.sax import make_parser, ContentHandler, \
@@ -109,7 +109,7 @@
                           "<Donald Duck & Co>")
 
     def test_escape_extra(self):
-        self.assertEquals(escape("Hei på deg", {"å" : "å"}),
+        self.assertEquals(escape("Hei pÃ¥ deg", {"Ã¥" : "å"}),
                           "Hei på deg")
 
     # ===== unescape
@@ -121,7 +121,7 @@
                           "<Donald Duck & Co>")
 
     def test_unescape_extra(self):
-        self.assertEquals(unescape("Hei på deg", {"å" : "&aring;"}),
+        self.assertEquals(unescape("Hei på deg", {"å" : "&aring;"}),
                           "Hei p&aring; deg")
 
     def test_unescape_amp_extra(self):

Modified: python/branches/release27-maint/Lib/test/test_unicode.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_unicode.py	(original)
+++ python/branches/release27-maint/Lib/test/test_unicode.py	Wed Oct 27 20:58:04 2010
@@ -1,4 +1,3 @@
-# -*- coding: iso-8859-1 -*-
 """ Test script for the Unicode implementation.
 
 Written by Marc-Andre Lemburg (mal at lemburg.com).


More information about the Python-checkins mailing list