5621: add a comment about getiterator if python version > 2.6

svn: r19152
This commit is contained in:
Jérôme Rapinat 2012-03-25 15:24:14 +00:00
parent 52f8a42312
commit c0acdd678d

View File

@ -93,6 +93,15 @@ def XMLParse(filename, mark):
tree = ElementTree.parse(filename)
root = tree.getroot()
python_v = sys.version_info
#if python_v[1] != 6:
# python 2.7
# iter() is the new name for getiterator;
# in ET 1.3, it is implemented as a generator method,
# but is otherwise identical
'''
<?xml version="1.0" encoding="UTF-8"?>