(self)
| 232 | self.trans.write(QUOTE) |
| 233 | |
| 234 | def writeJSONObjectStart(self): |
| 235 | self.context.write() |
| 236 | self.trans.write(LBRACE) |
| 237 | self.pushContext(JSONPairContext(self)) |
| 238 | |
| 239 | def writeJSONObjectEnd(self): |
| 240 | self.popContext() |
no test coverage detected