From 808447553994043205d0aa851cf50a7080525183 Mon Sep 17 00:00:00 2001 From: pompolic <pompolic@special-circumstanc.es> Date: Fri, 20 May 2022 21:41:12 +0200 Subject: [PATCH] (WIP) add TODO --- gdb-port/ast.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb-port/ast.py b/gdb-port/ast.py index 4573fdc..a4e0c81 100644 --- a/gdb-port/ast.py +++ b/gdb-port/ast.py @@ -156,6 +156,7 @@ class HCountedArray: #TODO: indent wrapper #TODO: the format is just for testing walking the AST graph + #TODO: escaped newlines and str() don't play well together def __str__(self): elements_str = ", ".join([str(elem) for elem in self.elements_as_list()]) return "[ {0} ]".format(elements_str) -- GitLab