Decrease indentation level.
(self)
| 236 | self.dent += 1 |
| 237 | |
| 238 | def undent(self): |
| 239 | """Decrease indentation level.""" |
| 240 | self.dent -= 1 |
| 241 | |
| 242 | def _to_str_impl(self, schema): |
| 243 | """Prototype object based on the schema, in Python code with comments. |