diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2024-08-08 13:03:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 13:03:45 (GMT) |
commit | 833eb106f5ebbac258f236d50177712d98a36715 (patch) | |
tree | 481611e4ec767bb82a6c8929ce25bb69d704c41f /Python | |
parent | bf8b3746398ea756c97e3cf263d63ca3ce3a544e (diff) | |
download | cpython-833eb106f5ebbac258f236d50177712d98a36715.zip cpython-833eb106f5ebbac258f236d50177712d98a36715.tar.gz cpython-833eb106f5ebbac258f236d50177712d98a36715.tar.bz2 |
gh-122562: fix dump_symtable for ste_free and ste_child_free removal (#122825)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/symtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 4acf762..527bc36 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -286,7 +286,7 @@ static void _dump_symtable(PySTEntryObject* ste, PyObject* prefix) ( "%U=== Symtable for %U ===\n" "%U%s%s\n" - "%U%s%s%s%s%s%s%s%s%s%s%s%s%s\n" + "%U%s%s%s%s%s%s%s%s%s%s%s\n" "%Ulineno: %d col_offset: %d\n" "%U--- Symbols ---\n" ), |