summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-09-08 21:40:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-09-08 21:40:36 (GMT)
commit262b6793e04993cb88847a3fb8dab22848cf6647 (patch)
tree7b985de4d19e233277cfbd767eb71b11034429e9 /Misc
parent5dc504c3c937a160c6d09bb124df5298712a1839 (diff)
downloadcpython-262b6793e04993cb88847a3fb8dab22848cf6647.zip
cpython-262b6793e04993cb88847a3fb8dab22848cf6647.tar.gz
cpython-262b6793e04993cb88847a3fb8dab22848cf6647.tar.bz2
Issue #26020: Fix evaluation order for set literals
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9125caf..1922432 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,8 @@ Core and Builtins
after use of 'def' in _PyState_AddModule().
Initial patch by Christian Heimes.
+- Issue #26020: set literal evaluation order did not match documented behaviour.
+
- Issue #27782: Multi-phase extension module import now correctly allows the
``m_methods`` field to be used to add module level functions to instances
of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.