(self, raw_data)
| 2435 | return sec, usec # type: ignore |
| 2436 | |
| 2437 | def _add_padding(self, raw_data): |
| 2438 | # type: (bytes) -> bytes |
| 2439 | raw_data += ((-len(raw_data)) % 4) * b"\x00" |
| 2440 | return raw_data |
| 2441 | |
| 2442 | def build_block(self, block_type, block_body, options=None): |
| 2443 | # type: (bytes, bytes, Optional[bytes]) -> bytes |
no outgoing calls
no test coverage detected