diff options
author | David Lord <davidism@gmail.com> | 2019-10-24 08:00:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-24 08:00:39 -0700 |
commit | 9a7dd7b28b50fd8adc019ab2702b50ae5c6ed782 (patch) | |
tree | 68d72a47347bddbe5a24f12adf6cef9a8c800462 /CHANGES.rst | |
parent | 81825095d24f4dbccb40f787fff70db54989b91c (diff) | |
parent | 7ca03082c5ba4621113a16178a12cfdad20760bb (diff) | |
download | jinja2-9a7dd7b28b50fd8adc019ab2702b50ae5c6ed782.tar.gz |
Merge pull request #1090 from pallets/lrucache-copy
LRUCache.copy's queue methods point to the correct queue
Diffstat (limited to 'CHANGES.rst')
-rw-r--r-- | CHANGES.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index d53a4db..f64047b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -55,6 +55,8 @@ Unreleased - :class:`~nativetypes.NativeTemplate` correctly handles quotes between expressions. ``"'{{ a }}', '{{ b }}'"`` renders as the tuple ``('1', '2')`` rather than the string ``'1, 2'``. :issue:`1020` +- After calling ``LRUCache.copy()``, the copy's queue methods point to + the correct queue. :issue:`843` Version 2.10.3 |