(self, text)
| 683 | return True |
| 684 | |
| 685 | def encode (self, text): |
| 686 | if text is None: |
| 687 | return None |
| 688 | text = text.replace('\\', '\\\\').replace('\n', '\\n') |
| 689 | return text.replace('\r', '\\r') |
| 690 | |
| 691 | def decode (self, text): |
| 692 | output = [] |
no outgoing calls
no test coverage detected