In the json_reformat.py example, the ContentHandler defines the parse_complete method:
|
def parse_complete(self): |
|
if not stream: |
In yajl_parse.py, it appears that the method should be complete_parse:
|
def complete_parse(self): |
|
''' Called when the parsing of the stream has finished ''' |