From 688a853e4ed165564a3a789bb142297388075727 Mon Sep 17 00:00:00 2001 From: Jarkko Saltiola Date: Mon, 22 Sep 2025 11:13:21 +0300 Subject: [PATCH] Separate hash map elements with comma in printer output Dismiss global PRINT_SEPARATOR (empty by default?) as hash map is a special case and benefits generally of the separator between pairs for readability. --- src/basilisp/lang/map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basilisp/lang/map.py b/src/basilisp/lang/map.py index 2b500b75..53e62cb0 100644 --- a/src/basilisp/lang/map.py +++ b/src/basilisp/lang/map.py @@ -188,7 +188,7 @@ def entry_reprs(): else: items = list(entry_reprs()) - seq_lrepr = PRINT_SEPARATOR.join(items + trailer) + seq_lrepr = ", ".join(items + trailer) ns_prefix = ("#:" + ns_name_shared) if ns_name_shared else "" if kwargs["print_meta"] and meta: