Josh English wrote:
The code uses an xml.sax.handler.ContentHandler subclass,  that stores
the results in "output" and the filter function is :

def list_submissions(argstring,filters={}):
    sh=SubHandler(argstring,filters)
    parser = make_parser()
    parser.setContentHandler(sh)
    parser.parse(open(submissionpath))

    return sh.output

running this function over and over causes the problem

what's filters here?  are you aware of this issue:

    http://effbot.org/zone/default-values.htm

?

</F>

_______________________________________________
XML-SIG maillist  -  XML-SIG@python.org
http://mail.python.org/mailman/listinfo/xml-sig

Reply via email to