[compat] compat_etree_fromstring: only decode bytes objects

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-10-25 20:30:54 +01:00
parent 36e6f62cd0
commit 387db16a78
2 changed files with 5 additions and 4 deletions

View file

@ -74,9 +74,10 @@ class TestCompat(unittest.TestCase):
self.assertEqual(compat_shlex_split('-option "one two"'), ['-option', 'one two'])
def test_compat_etree_fromstring(self):
xml = '<el foo="bar"></el>'
xml = '<el foo="bar" spam="中文"></el>'
doc = compat_etree_fromstring(xml.encode('utf-8'))
self.assertTrue(isinstance(doc.attrib['foo'], compat_str))
self.assertTrue(isinstance(doc.attrib['spam'], compat_str))
if __name__ == '__main__':
unittest.main()