(self, encoding=None, formatter="minimal")
| 1156 | return s |
| 1157 | |
| 1158 | def prettify(self, encoding=None, formatter="minimal"): |
| 1159 | if encoding is None: |
| 1160 | return self.decode(True, formatter=formatter) |
| 1161 | else: |
| 1162 | return self.encode(encoding, True, formatter=formatter) |
| 1163 | |
| 1164 | def decode_contents(self, indent_level=None, |
| 1165 | eventual_encoding=DEFAULT_OUTPUT_ENCODING, |