(self)
| 1216 | |
| 1217 | @_sslcopydoc |
| 1218 | def cipher(self): |
| 1219 | self._checkClosed() |
| 1220 | if self._sslobj is None: |
| 1221 | return None |
| 1222 | else: |
| 1223 | return self._sslobj.cipher() |
| 1224 | |
| 1225 | @_sslcopydoc |
| 1226 | def group(self): |
nothing calls this directly
no test coverage detected