Formatted representation of extension.
(self, formatstr)
| 52 | .format(self.renegotiated_connection) |
| 53 | |
| 54 | def __format__(self, formatstr): |
| 55 | """Formatted representation of extension.""" |
| 56 | data = messages.format_bytearray(self.renegotiated_connection, |
| 57 | formatstr) |
| 58 | return "RenegotiationExtension(renegotiated_connection={0})"\ |
| 59 | .format(data) |
| 60 | |
| 61 | tlslite.extensions.TLSExtension._universalExtensions[ |
| 62 | ExtensionType.renegotiation_info] = RenegotiationExtension |
nothing calls this directly
no outgoing calls
no test coverage detected