diff options
author | John Newbery <john@johnnewbery.com> | 2017-10-16 21:46:23 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-10-16 21:46:23 -0400 |
commit | f893085325b57dd07bde78a01e5dcb7d303154de (patch) | |
tree | dd0fcd3155fde2b3a50f6cfee75f482d857c185b /test/functional/test_framework/key.py | |
parent | 8f9e3627ef054c9732f4e529c6ed429ed8dc7183 (diff) |
[tests] Don't subclass from object for Python 3
Diffstat (limited to 'test/functional/test_framework/key.py')
-rw-r--r-- | test/functional/test_framework/key.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/key.py b/test/functional/test_framework/key.py index 85a6158a2f..aa91fb5b0d 100644 --- a/test/functional/test_framework/key.py +++ b/test/functional/test_framework/key.py @@ -84,7 +84,7 @@ def _check_result(val, func, args): ssl.EC_KEY_new_by_curve_name.restype = ctypes.c_void_p ssl.EC_KEY_new_by_curve_name.errcheck = _check_result -class CECKey(object): +class CECKey(): """Wrapper around OpenSSL's EC_KEY""" POINT_CONVERSION_COMPRESSED = 2 |