(self, *args, **kwargs)
| 805 | * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery. |
| 806 | """ |
| 807 | def __init__(self, *args, **kwargs): |
| 808 | raise TypeError( |
| 809 | f"{self.__class__.__name__} does not have a public " |
| 810 | f"constructor. Instances are returned by SSLContext.wrap_bio()." |
| 811 | ) |
| 812 | |
| 813 | @classmethod |
| 814 | def _create(cls, incoming, outgoing, server_side=False, |