Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions mark.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
We get each package to decode the results of each binary and then encode the
same payload.
"""
import pprint

import sys
import os.path
Expand Down Expand Up @@ -176,6 +177,11 @@ def write_pickle(options, decode_results, encode_results):
'encode': encode_results
}, f, pickle.HIGHEST_PROTOCOL)

print "decode_results"
pprint.pprint(decode_results)
print "encode_results"
pprint.pprint(encode_results)


def main(*args):
options, args = parse_args(*args)
Expand Down