# HG changeset patch # User Franz Glasner # Date 1624556504 -7200 # Node ID bd28fb4565e10eb91772fcad9c872764854e3a59 # Parent a7491f835cb021f1ecb9e3bc12288e8595676511 FIX: Tagging of the KeyError: :py:exception: -> :py:exc: diff -r a7491f835cb0 -r bd28fb4565e1 CHANGES.txt --- a/CHANGES.txt Thu Jun 24 19:39:20 2021 +0200 +++ b/CHANGES.txt Thu Jun 24 19:41:44 2021 +0200 @@ -20,9 +20,9 @@ - **[feature]** New filter functions :py:func:`None` and :py:func:`Empty`. They are - useful in variable interpolation context where they suppress possible - lookup errors (aka :py:exception:`KeyError`) and instead return with - :py:obj:`None` or an empty string. + useful in variable interpolation context where they suppress + possible lookup errors (aka :py:exc:`KeyError`) and instead return + with :py:obj:`None` or an empty string. 0.14 (2021-05-10) diff -r a7491f835cb0 -r bd28fb4565e1 docs/introduction.rst --- a/docs/introduction.rst Thu Jun 24 19:39:20 2021 +0200 +++ b/docs/introduction.rst Thu Jun 24 19:41:44 2021 +0200 @@ -419,8 +419,8 @@ Also available are special filter functions ``None`` and ``Empty``. They are useful in variable interpolation context because they -suppress possible lookup errors (aka :py:exception:`KeyError`) and -instead return with :py:obj:`None` or an empty string. +suppress possible lookup errors (aka :py:exc:`KeyError`) and instead +return with :py:obj:`None` or an empty string. Examples