summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-12-15 16:23:24 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-12-15 16:23:24 (GMT)
commit5cc70c9935ca07d4ac08cddaeee90a87ec1e5a4a (patch)
tree642ef65aa9695d5446dbd26be75b4c1b59aa77be /Misc
parent944dbc643173400c5e4cac4dd4315ace28d6e937 (diff)
parent3d3f264849580ab1e8f3a8e8e8ba402bfe2c6523 (diff)
downloadcpython-5cc70c9935ca07d4ac08cddaeee90a87ec1e5a4a.zip
cpython-5cc70c9935ca07d4ac08cddaeee90a87ec1e5a4a.tar.gz
cpython-5cc70c9935ca07d4ac08cddaeee90a87ec1e5a4a.tar.bz2
Merge 3.6
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6bdcf4e..c3f7d7a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.7.0 alpha 1
Core and Builtins
-----------------
+- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
+ must not convert combined table into split table. Patch written by INADA
+ Naoki.
+
- Issue #28739: f-string expressions no longer accepted as docstrings and
by ast.literal_eval() even if they do not include expressions.