From 8c65eae5f4cb6d023b1720e3fcf65e03cc0d858a Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Tue, 19 Nov 2019 21:12:30 -0800 Subject: [PATCH 1/3] Fix rendering of Before/After in changelog Apparently the version of sphinx that rtd uses is a little more strict about whether an anonymous `code-block` can happen --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a63e6f838..9ab3c871e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -113,7 +113,7 @@ Improvements Before: - .. code-block:: + .. code-block:: pytest E AssertionError: assert ['version', '...version_info'] == ['version', '...version', ...] E Right contains 3 more items, first extra item: ' ' @@ -129,7 +129,7 @@ Improvements After: - .. code-block:: + .. code-block:: pytest E AssertionError: assert ['version', '...version_info'] == ['version', '...version', ...] E Right contains 3 more items, first extra item: ' ' From af9dfc604deb490431a790d89fba7dfae107a079 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 20 Nov 2019 07:05:31 -0300 Subject: [PATCH 2/3] Introduce 5934 in CHANGELOG and fix "pytest" blocks --- CHANGELOG.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9ab3c871e..0f53fe33a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -113,7 +113,7 @@ Improvements Before: - .. code-block:: pytest + :: E AssertionError: assert ['version', '...version_info'] == ['version', '...version', ...] E Right contains 3 more items, first extra item: ' ' @@ -129,7 +129,7 @@ Improvements After: - .. code-block:: pytest + :: E AssertionError: assert ['version', '...version_info'] == ['version', '...version', ...] E Right contains 3 more items, first extra item: ' ' @@ -145,6 +145,8 @@ Improvements E ] +- `#5934 `_: ``repr`` of ``ExceptionInfo`` objects has been improved to honor the ``__repr__`` method of the underlying exception. + - `#5936 `_: Display untruncated assertion message with ``-vv``. From fe69a2cfb7d834ca6bf25bc69b9331f49ca3d30d Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 20 Nov 2019 07:06:11 -0300 Subject: [PATCH 3/3] Delete 5934.feature.rst included in the wrong folder by accident --- doc/5934.feature.rst | 1 - 1 file changed, 1 deletion(-) delete mode 100644 doc/5934.feature.rst diff --git a/doc/5934.feature.rst b/doc/5934.feature.rst deleted file mode 100644 index 17c0b1737..000000000 --- a/doc/5934.feature.rst +++ /dev/null @@ -1 +0,0 @@ -``repr`` of ``ExceptionInfo`` objects has been improved to honor the ``__repr__`` method of the underlying exception.