| 87 | |
| 88 | |
| 89 | class JSONBaseContext(object): |
| 90 | |
| 91 | def __init__(self, protocol): |
| 92 | self.protocol = protocol |
| 93 | self.first = True |
| 94 | |
| 95 | def doIO(self, function): |
| 96 | pass |
| 97 | |
| 98 | def write(self): |
| 99 | pass |
| 100 | |
| 101 | def read(self): |
| 102 | pass |
| 103 | |
| 104 | def escapeNum(self): |
| 105 | return False |
| 106 | |
| 107 | def __str__(self): |
| 108 | return self.__class__.__name__ |
| 109 | |
| 110 | |
| 111 | class JSONListContext(JSONBaseContext): |
no outgoing calls
no test coverage detected