From d38956fb9e7ad9b75e0cfa1f2737f1dc94cf5ef3 Mon Sep 17 00:00:00 2001 From: gilch Date: Mon, 18 Sep 2017 00:58:14 -0600 Subject: [PATCH] remove trailing commas in HyDict reprs --- docs/language/core.rst | 2 +- hy/models.py | 6 +++--- tests/test_models.py | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/language/core.rst b/docs/language/core.rst index 7483a0b..3e9611b 100644 --- a/docs/language/core.rst +++ b/docs/language/core.rst @@ -633,7 +633,7 @@ arguments. If the argument list only has one element, return it. => (list* 1 10 2 20 '{}) HyDict([ HyInteger(1), HyInteger(10), - HyInteger(2), HyInteger(20),]) + HyInteger(2), HyInteger(20)]) => (list* 1 10 2 20 {})