(self)
| 325 | return (True if NUMERIC_CHAR.find(character) != - 1 else False) |
| 326 | |
| 327 | def readJSONQuotes(self): |
| 328 | if (self.context.escapeNum()): |
| 329 | self.readJSONSyntaxChar(QUOTE) |
| 330 | |
| 331 | def readJSONNumericChars(self): |
| 332 | numeric = [] |
no test coverage detected