(self, *args, **kwargs)
| 858 | * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery. |
| 859 | """ |
| 860 | def __init__(self, *args, **kwargs): |
| 861 | raise TypeError( |
| 862 | f"{self.__class__.__name__} does not have a public " |
| 863 | f"constructor. Instances are returned by SSLContext.wrap_bio()." |
| 864 | ) |
| 865 | |
| 866 | @classmethod |
| 867 | def _create(cls, incoming, outgoing, server_side=False, |