Hi everybody,<br><br>having a piece of xml such as:<br><br>&lt;?xsl-transform href=&quot;test.xsl&quot; type=&quot;text/xsl&quot;?&gt;<br>&lt;aRoot /&gt;<br><br>I can use:<br><br>xmlObject = objectify.fromstring()<br>piElement = xmlObject.getprevious()<br>

<br>but the returned object (differently from an xml object generated with etree.fromstring()), is not a processing instruction but an ObjectifiedElement, and doesn&#39;t seem to give me access to the href and type attributes. I&#39;m aware that they are actually a single pseudo-attribute, but how do I access it?<br>

<br>Manu<br><br>