aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2019-04-13 22:27:28 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2019-04-13 22:27:28 +0000
commite88f453cfedb2fb5bba01d46bda2225bd25fc9c0 (patch)
tree8b3a99966724f3487c8d7359dc6d72a353e2652b /doc
parent1ac8cd979f5b49dff269d07e2ca3f61785ebd209 (diff)
parent8ace3ad64144b44d383e07ddcfb5e61848cd03b2 (diff)
downloadexternal_python_mako-e88f453cfedb2fb5bba01d46bda2225bd25fc9c0.tar.gz
external_python_mako-e88f453cfedb2fb5bba01d46bda2225bd25fc9c0.tar.bz2
external_python_mako-e88f453cfedb2fb5bba01d46bda2225bd25fc9c0.zip
Merge "Use Constant.value, not Constant.n"
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog.rst12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst
index fdef573..d667475 100644
--- a/doc/build/changelog.rst
+++ b/doc/build/changelog.rst
@@ -9,6 +9,16 @@ Changelog
:version: 1.0.9
:include_notes_from: unreleased
+ .. change::
+ :tags: bug
+ :tickets: 287
+
+ Further corrected the previous fix for :ticket:`287` as it relied upon
+ an attribute that is monkeypatched by Python's ``ast`` module for some
+ reason, which fails if ``ast`` hasn't been imported; the correct
+ attribute ``Constant.value`` is now used. Also note the issue
+ was mis-numbered in the previous changelog note.
+
.. changelog::
:version: 1.0.8
:released: Wed Mar 20 2019
@@ -16,7 +26,7 @@ Changelog
.. change::
:tags: bug
- :tickets: 281
+ :tickets: 287
Fixed an element in the AST Python generator which changed
for Python 3.8, causing expression generation to fail.