(self)
| 200 | self.context = ctx |
| 201 | |
| 202 | def popContext(self): |
| 203 | self.contextStack.pop() |
| 204 | if self.contextStack: |
| 205 | self.context = self.contextStack[-1] |
| 206 | else: |
| 207 | self.context = JSONBaseContext(self) |
| 208 | |
| 209 | def writeJSONString(self, string): |
| 210 | self.context.write() |
no test coverage detected