fix xmlcharrefreplace tests on wide build when tests are loaded from .py[co] files.
This commit is contained in:
parent
1ef959ac3d
commit
9fa6a8ba63
|
@ -84,9 +84,9 @@ class CodecCallbackTest(unittest.TestCase):
|
|||
tests = [(u'\U0001f49d', '💝'),
|
||||
(u'\ud83d', '�'),
|
||||
(u'\udc9d', '�'),
|
||||
(u'\ud83d\udc9d', '💝' if len(u'\U0001f49d') > 1 else
|
||||
'��'),
|
||||
]
|
||||
if u'\ud83d\udc9d' != u'\U0001f49d':
|
||||
tests += [(u'\ud83d\udc9d', '��')]
|
||||
for encoding in ['ascii', 'latin1', 'iso-8859-15']:
|
||||
for s, exp in tests:
|
||||
self.assertEqual(s.encode(encoding, 'xmlcharrefreplace'),
|
||||
|
|
|
@ -1663,9 +1663,9 @@ class UnicodeTest(
|
|||
tests = [(u'\U0001f49d', '💝'),
|
||||
(u'\ud83d', '�'),
|
||||
(u'\udc9d', '�'),
|
||||
(u'\ud83d\udc9d', '💝' if len(u'\U0001f49d') > 1 else
|
||||
'��'),
|
||||
]
|
||||
if u'\ud83d\udc9d' != u'\U0001f49d':
|
||||
tests += [(u'\ud83d\udc9d', '��')]
|
||||
for s, exp in tests:
|
||||
self.assertEqual(
|
||||
unicode_encodedecimal(u"123" + s, "xmlcharrefreplace"),
|
||||
|
|
|
@ -16,6 +16,12 @@ IDLE
|
|||
|
||||
- Issue #19426: Fixed the opening of Python source file with specified encoding.
|
||||
|
||||
Tests
|
||||
-----
|
||||
|
||||
- Issue #19457: Fixed xmlcharrefreplace tests on wide build when tests are
|
||||
loaded from .py[co] files.
|
||||
|
||||
|
||||
What's New in Python 2.7.6 release candidate 1?
|
||||
===============================================
|
||||
|
|
Loading…
Reference in New Issue