[Python-checkins] r83363 - python/branches/import_unicode/Lib/test/test_xml_etree.py

victor.stinner python-checkins at python.org
Sat Jul 31 23:21:40 CEST 2010


Author: victor.stinner
Date: Sat Jul 31 23:21:39 2010
New Revision: 83363

Log:
fix a typo in a comment: undecodable => unencodable

Modified:
   python/branches/import_unicode/Lib/test/test_xml_etree.py

Modified: python/branches/import_unicode/Lib/test/test_xml_etree.py
==============================================================================
--- python/branches/import_unicode/Lib/test/test_xml_etree.py	(original)
+++ python/branches/import_unicode/Lib/test/test_xml_etree.py	Sat Jul 31 23:21:39 2010
@@ -24,7 +24,7 @@
 try:
     SIMPLE_XMLFILE.encode("utf8")
 except UnicodeEncodeError:
-    # ignore all tests if the current working directory is undecodable
+    # ignore all tests if the current working directory is unencodable
     raise unittest.SkipTest("filename is not encodable to utf8")
 SIMPLE_NS_XMLFILE = findfile("simple-ns.xml", subdir="xmltestdata")
 


More information about the Python-checkins mailing list