Hi:<br><br>We have an issue with libxml library running on Windows.<br>We are trying to read an xml document from a string over and over but the program crashes in the while loop. We suspect the problem is that we cannot run the function 
etree.parse too much times when we are reading a xml document from a string. The code crashes when the program read a xml document repeatedly.<br>The issue is on Windows becuase on an Linux environment there is no problem excecuting it.
<br><br>We are trying to execute the piece of code shown below in this environment:<br>
<ul><li>Windows XP Service Pack 2</li><li>
Python 2.5</li><li>
lxml 1.3.4 and 2.0 alpha 3</li></ul>
The question is: what we are doing wrong? or is this a problem with the library running on Windows?<br><br><div style="margin-left: 40px;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">
# -*- coding: UTF-8 -*-</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">from lxml import etree</span>
</font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">from StringIO import StringIO</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">if __name__ == &quot;__main__&quot;:</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp; document=&quot;&quot;&quot;&nbsp;&nbsp;&nbsp; &lt;doc type=&quot;Ficha Visado&quot; id=&quot;2&quot;&gt;
</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Rut Afiliado&quot; type=&quot;string&quot;&gt;1-3&lt;/attribute&gt;
</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Fecha Escaneo&quot; type=&quot;date&quot;&gt;2006-03-13 08:44:52&lt;/attribute&gt;
</span></font><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;"></span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Suc Promotor&quot; type=&quot;string&quot;&gt;SANTIAGO&lt;/attribute&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Apellido Paterno&quot; type=&quot;string&quot;&gt;PUENTE&lt;/attribute&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Fecha Visacion&quot; type=&quot;string&quot;&gt;13/03/2006&lt;/attribute&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Nombres Afiliado&quot; type=&quot;string&quot;&gt;Robertin&lt;/attribute&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Apellido Materno&quot; type=&quot;string&quot;&gt;MANZANO&lt;/attribute&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;doc type=&quot;DPS&quot; id=&quot;1&quot;&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;attribute name=&quot;Fecha Escaneo&quot; type=&quot;date&quot;&gt;2006-03-10 15:52:29&lt;/attribute&gt;</span></font>
<br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;link href=&quot;1-0.img&quot; rel=&quot;media&quot;/&gt;
</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;link href=&quot;1-1.img&quot; rel=&quot;media&quot;/&gt;
</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/doc&gt;</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp; &lt;/doc&gt;&quot;&quot;&quot;</span></font><br style="font-family: courier new,monospace; font-style: italic;"><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp; j=0</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp; while 1:</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print j</span></font><br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; j+=1</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #tree = etree.parse(StringIO(docRauco0))</span></font>
<br style="font-family: courier new,monospace; font-style: italic;"><font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tree = etree.fromstring(document)</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; images_url = tree.xpath(&#39;//link[@rel=&quot;media&quot;][@href]&#39;)</span></font><br style="font-family: courier new,monospace; font-style: italic;">
<font style="font-style: italic;" size="1"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; image_url_name=images_url[0].attrib[&#39;href&#39;]</span></font><br></div><br><br>-- <br>Regards,<br>&nbsp;&nbsp;Roberto