summaryrefslogtreecommitdiff
path: root/benchmarks/basic_operations.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-08-06 15:15:02 -0700
committerGitHub <noreply@github.com>2020-08-06 15:15:02 -0700
commit8c5a41baf0bd2a1388d601e5b49d06b91997ccb8 (patch)
tree89cad14d95927f8ea696706c2b1399dde17fa244 /benchmarks/basic_operations.py
parentc6f13c3b69d32257ab75ba9d824e5b555f91572c (diff)
downloadredis-py-8c5a41baf0bd2a1388d601e5b49d06b91997ccb8.tar.gz
Remove support for end-of-life Python 2.7 (#1318)
Remove support for end-of-life Python 2.7 Python 2.7 is end of life. It is no longer receiving bug fixes, including for security issues. Python 2.7 went EOL on 2020-01-01. For additional details on support Python versions, see: Supported: https://devguide.python.org/#status-of-python-branches EOL: https://devguide.python.org/devcycle/#end-of-life-branches Removing support for EOL Pythons will reduce testing and maintenance resources while allowing the library to move towards a modern Python 3 style. Python 2.7 users can continue to use the previous version of redis-py. Was able to simplify the code: - Removed redis._compat module - Removed __future__ imports - Removed object from class definition (all classes are new style) - Removed long (Python 3 unified numeric types) - Removed deprecated __nonzero__ method - Use simpler Python 3 super() syntax - Use unified OSError exception - Use yield from syntax Co-authored-by: Andy McCurdy <andy@andymccurdy.com>
Diffstat (limited to 'benchmarks/basic_operations.py')
-rw-r--r--benchmarks/basic_operations.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/benchmarks/basic_operations.py b/benchmarks/basic_operations.py
index a4b675d..9446343 100644
--- a/benchmarks/basic_operations.py
+++ b/benchmarks/basic_operations.py
@@ -1,13 +1,8 @@
-from __future__ import print_function
import redis
import time
-import sys
from functools import wraps
from argparse import ArgumentParser
-if sys.version_info[0] == 3:
- long = int
-
def parse_args():
parser = ArgumentParser()
@@ -47,9 +42,9 @@ def run():
def timer(func):
@wraps(func)
def wrapper(*args, **kwargs):
- start = time.clock()
+ start = time.monotonic()
ret = func(*args, **kwargs)
- duration = time.clock() - start
+ duration = time.monotonic() - start
if 'num' in kwargs:
count = kwargs['num']
else:
@@ -57,7 +52,7 @@ def timer(func):
print('{} - {} Requests'.format(func.__name__, count))
print('Duration = {}'.format(duration))
print('Rate = {}'.format(count/duration))
- print('')
+ print()
return ret
return wrapper
@@ -185,7 +180,6 @@ def hmset(conn, num, pipeline_size, data_size):
set_data = {'str_value': 'string',
'int_value': 123456,
- 'long_value': long(123456),
'float_value': 123456.0}
for i in range(num):
conn.hmset('hmset_key', set_data)