| 237 | |
| 238 | |
| 239 | class _CompressionMethodsField(_CipherSuitesField): |
| 240 | |
| 241 | def any2i_one(self, pkt, x): |
| 242 | if isinstance(x, (_GenericComp, _GenericCompMetaclass)): |
| 243 | x = x.val |
| 244 | if isinstance(x, str): |
| 245 | x = self.s2i[x] |
| 246 | return x |
| 247 | |
| 248 | |
| 249 | ############################################################################### |
no outgoing calls
no test coverage detected
searching dependent graphs…