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 ''' |
In the
json_reformat.pyexample, theContentHandlerdefines theparse_completemethod:yajl-py/examples/json_reformat.py
Lines 35 to 36 in ba54a7d
In
yajl_parse.py, it appears that the method should becomplete_parse:yajl-py/yajl/yajl_parse.py
Lines 125 to 126 in ba54a7d