print statements converted from python 2 to python 3
This commit is contained in:
parent
e5b92e29a2
commit
ac7a6f750e
|
@ -19,5 +19,5 @@ for filename in matches:
|
|||
if 'win' in sys.platform:
|
||||
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
|
||||
else:
|
||||
print "Exception in %s: %s" % (filename, traceback.format_exc())
|
||||
print ("Exception in %s: %s" % (filename, traceback.format_exc()))
|
||||
sys.exit(1)
|
|
@ -52,15 +52,12 @@ for row in cur.fetchall():
|
|||
# f.close()
|
||||
|
||||
|
||||
print "Item count: %i" % (itemcount)
|
||||
print "Raw length: %i" % (rawlen)
|
||||
print "Bloom filter 1 length: %i, reduction to: %.2f%%" % \
|
||||
(bf1.bitarray.buffer_info()[1],
|
||||
print("Item count: %i" % itemcount)
|
||||
print("Raw length: %i" % rawlen)
|
||||
print("Bloom filter 1 length: %i, reduction to: %.2f%%" % bf1.bitarray.buffer_info()[1],
|
||||
100.0 * bf1.bitarray.buffer_info()[1] / rawlen)
|
||||
print "Bloom filter 1 capacity: %i and error rate: %.3f%%" % (bf1.capacity, 100.0 * bf1.error_rate)
|
||||
print "Bloom filter 1 took %.2fs" % (bf1time)
|
||||
print "Bloom filter 2 length: %i, reduction to: %.3f%%" % \
|
||||
(bf2.num_bits / 8,
|
||||
100.0 * bf2.num_bits / 8 / rawlen)
|
||||
print "Bloom filter 2 capacity: %i and error rate: %.3f%%" % (bf2.capacity, 100.0 * bf2.error_rate)
|
||||
print "Bloom filter 2 took %.2fs" % (bf2time)
|
||||
print("Bloom filter 1 capacity: %i and error rate: %.3f%%" % bf1.capacity, 100.0 * bf1.error_rate)
|
||||
print("Bloom filter 1 took %.2fs" % bf1time)
|
||||
print("Bloom filter 2 length: %i, reduction to: %.3f%%" % bf2.num_bits / 8, 100.0 * bf2.num_bits / 8 / rawlen)
|
||||
print("Bloom filter 2 capacity: %i and error rate: %.3f%%" % bf2.capacity, 100.0 * bf2.error_rate)
|
||||
print("Bloom filter 2 took %.2fs" % bf2time)
|
||||
|
|
Loading…
Reference in New Issue
Block a user