(self)
| 384 | return base64.b64decode(string) |
| 385 | |
| 386 | def readJSONObjectStart(self): |
| 387 | self.context.read() |
| 388 | self.readJSONSyntaxChar(LBRACE) |
| 389 | self.pushContext(JSONPairContext(self)) |
| 390 | |
| 391 | def readJSONObjectEnd(self): |
| 392 | self.readJSONSyntaxChar(RBRACE) |
nothing calls this directly
no test coverage detected