浏览代码

[compat] compat_etree_fromstring: clarify comment

Jaime Marquínez Ferrándiz 9 年之前
父节点
当前提交
ae37338e68
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      youtube_dl/compat.py

+ 2 - 2
youtube_dl/compat.py

@@ -216,8 +216,8 @@ except ImportError:  # Python 2.6
 if sys.version_info[0] >= 3:
 if sys.version_info[0] >= 3:
     compat_etree_fromstring = xml.etree.ElementTree.fromstring
     compat_etree_fromstring = xml.etree.ElementTree.fromstring
 else:
 else:
-    # on python 2.x the attributes and text of a node aren't always unicode
-    # objects
+    # python 2.x tries to encode unicode strings with ascii (see the
+    # XMLParser._fixtext method)
     etree = xml.etree.ElementTree
     etree = xml.etree.ElementTree
 
 
     try:
     try: