whitespace: three blank lines between top-level suites, two blank lines between indented suites
diff --git a/OpenSSL/SSL.py b/OpenSSL/SSL.py
index 7e2066c..9a3151d 100644
--- a/OpenSSL/SSL.py
+++ b/OpenSSL/SSL.py
@@ -1417,6 +1417,7 @@
         if not result:
             _raise_current_error()
 
+
     def get_cipher_name(self):
         """
         Obtain the name of the currently used cipher.
@@ -1429,6 +1430,7 @@
         else:
             return _native(_ffi.string(_lib.SSL_CIPHER_get_name(cipher)))
 
+
     def get_cipher_bits(self):
         """
         Obtain the number of secret bits of the currently used cipher.
@@ -1441,6 +1443,7 @@
         else:
             return _lib.SSL_CIPHER_get_bits(cipher, _ffi.NULL)
 
+
     def get_cipher_version(self):
         """
         Obtain the protocol name of the currently used cipher.