| 30 | |
| 31 | |
| 32 | void PyFormatter::open_array_section(std::string_view name) |
| 33 | { |
| 34 | PyObject *list = PyList_New(0); |
| 35 | dump_pyobject(name, list); |
| 36 | stack.push(cursor); |
| 37 | cursor = list; |
| 38 | } |
| 39 | |
| 40 | void PyFormatter::open_object_section(std::string_view name) |
| 41 | { |
no test coverage detected