[LNT] r249107 - New graphing JSON API
Kristof Beyls via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 2 06:27:58 PDT 2015
> + @marshal_with(graph_fields)
> + def get(self, machine_id, test_id, field_index):
> + """Get the data for a particular line in a graph."""
...
> +
> + samples = [{'val': val, 'rev': rev, 'time': time} for val, rev,
> time in q.all()]
> + import pprint
> + print "Samples"
> + pprint.pprint(samples)
It looks like a few print-debug statements snuck in here?
More information about the llvm-commits
mailing list