diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-10-22 01:24:50 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-10-22 01:24:50 -0700 |
commit | c6d86b25be338b78c79ec9a0f20a365e67e36537 (patch) | |
tree | 356b2b35146b83407717bf6d79d2997017b67ba0 /benchmarks/varint_speed.py | |
parent | 08c77499a2e8bc79d6788d70ef96d77752ed6325 (diff) | |
download | kafka-python-vendor-six-consistently.tar.gz |
Vendor `six` consistentlyvendor-six-consistently
Use vendored `six`, and also `six.moves.range` rather than `xrange`
Diffstat (limited to 'benchmarks/varint_speed.py')
-rw-r--r-- | benchmarks/varint_speed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/varint_speed.py b/benchmarks/varint_speed.py index 2c5cd62..624a12a 100644 --- a/benchmarks/varint_speed.py +++ b/benchmarks/varint_speed.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from __future__ import print_function import perf -import six +from kafka.vendor import six test_data = [ |