xml.dom.minidom -> nextElement ?

Alexandre ac007 at bluewin.ch
Thu Dec 4 20:51:29 EST 2003


little correction, next time ill test before sending :)
***************************************
def nextElement(current):
    next = current.nextSibling
    if next == None: return next
    elif next.nodeType == next.ELEMENT_NODE:
         return next
    else: return nextElement(next)
***************************************






More information about the Python-list mailing list