Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
Use out_flavor=tuple in bench
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed May 24, 2016
1 parent ddc7b59 commit 21e8a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/whereblocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def where0():
#@do_cprofile
def where1():
#return sum(r[0] for r in ct.where("(a > 5) & (b < 10)"))
return sum(r[0] for r in ct.where("(a > 5) & (b < 1e6)"))
return sum(r[0] for r in ct.where("(a > 5) & (b < 1e6)", out_flavor=tuple))

@timefunc
#@do_cprofile
Expand Down

0 comments on commit 21e8a81

Please sign in to comment.