diff options
author | Raymond Hettinger <python@rcn.com> | 2016-09-08 21:40:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-09-08 21:40:36 (GMT) |
commit | 262b6793e04993cb88847a3fb8dab22848cf6647 (patch) | |
tree | 7b985de4d19e233277cfbd767eb71b11034429e9 /Misc/NEWS | |
parent | 5dc504c3c937a160c6d09bb124df5298712a1839 (diff) | |
download | cpython-262b6793e04993cb88847a3fb8dab22848cf6647.zip cpython-262b6793e04993cb88847a3fb8dab22848cf6647.tar.gz cpython-262b6793e04993cb88847a3fb8dab22848cf6647.tar.bz2 |
Issue #26020: Fix evaluation order for set literals
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |