(self)
| 1200 | |
| 1201 | @_sslcopydoc |
| 1202 | def cipher(self): |
| 1203 | self._checkClosed() |
| 1204 | if self._sslobj is None: |
| 1205 | return None |
| 1206 | else: |
| 1207 | return self._sslobj.cipher() |
| 1208 | |
| 1209 | @_sslcopydoc |
| 1210 | def shared_ciphers(self): |
nothing calls this directly
no test coverage detected