(self)
| 1404 | |
| 1405 | @_sslcopydoc |
| 1406 | def verify_client_post_handshake(self): |
| 1407 | if self._sslobj: |
| 1408 | return self._sslobj.verify_client_post_handshake() |
| 1409 | else: |
| 1410 | raise ValueError("No SSL wrapper around " + str(self)) |
| 1411 | |
| 1412 | def _real_close(self): |
| 1413 | self._sslobj = None |
nothing calls this directly
no test coverage detected