summaryrefslogtreecommitdiff
path: root/OpenSSL
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-09-04 08:21:51 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-09-04 08:21:51 -0400
commita0bcafad1fb9df611627a57142bdd02d6ecdfe40 (patch)
tree27343bc2f9b1b311781e9149b71b6eddc1588ea3 /OpenSSL
parentda9f84f8431c1938ac7ce1326a27d31ee2820089 (diff)
downloadpyopenssl-git-a0bcafad1fb9df611627a57142bdd02d6ecdfe40.tar.gz
Removed an unused import and fixed formatting
Diffstat (limited to 'OpenSSL')
-rw-r--r--OpenSSL/test/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSSL/test/util.py b/OpenSSL/test/util.py
index 78b4a3f..4b044b7 100644
--- a/OpenSSL/test/util.py
+++ b/OpenSSL/test/util.py
@@ -7,7 +7,6 @@ Helpers for the OpenSSL test suite, largely copied from
U{Twisted<http://twistedmatrix.com/>}.
"""
-import os
import shutil
import sys
import traceback
@@ -24,7 +23,8 @@ from OpenSSL.crypto import Error
try:
import memdbg
except Exception:
- class _memdbg(object): heap = None
+ class _memdbg(object):
+ heap = None
memdbg = _memdbg()
from OpenSSL._util import ffi, lib, byte_string as b