Hi everybody,<br><br>having a piece of xml such as:<br><br><?xsl-transform href="test.xsl" type="text/xsl"?><br><aRoot /><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't seem to give me access to the href and type attributes. I'm aware that they are actually a single pseudo-attribute, but how do I access it?<br>
<br>Manu<br><br>