Comment lire le commentaire avant l'élément racine de XML Python

>>> from lxml import etree
>>> tree = etree.parse('filename.xml')
>>> root = tree.getroot()
>>> print root.getprevious()
<!--Comment 1-->
Impossible Iguana