(self, byte)
| 547 | self.writeJSONNumber(1 if boolean is True else 0) |
| 548 | |
| 549 | def writeByte(self, byte): |
| 550 | checkIntegerLimits(byte, 8) |
| 551 | self.writeJSONNumber(byte) |
| 552 | |
| 553 | def writeI16(self, i16): |
| 554 | checkIntegerLimits(i16, 16) |
nothing calls this directly
no test coverage detected