| 150 | |
| 151 | |
| 152 | class ByteTagField(ByteField): |
| 153 | def __init__( |
| 154 | self, default # type: bytes |
| 155 | ): |
| 156 | super(ByteTagField, self).__init__("tag", ord(default)) |
| 157 | |
| 158 | def randval(self): |
| 159 | return ord(self.default) |
| 160 | |
| 161 | |
| 162 | class _BasePostgres(Packet, TCPSession): |
no outgoing calls
no test coverage detected
searching dependent graphs…