summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a95d2a0..ba1f4de 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,8 +22,8 @@ Core and Builtins
compiler issues.
- Issue #26194: Deque.insert() gave odd results for bounded deques that had
- reached their maximum size. Now, the insert will happen normally and then
- any overflowing element will be truncated from the right side.
+ reached their maximum size. Now an IndexError will be raised when attempting
+ to insert into a full deque.
- Issue #25843: When compiling code, don't merge constants if they are equal
but have a different types. For example, ``f1, f2 = lambda: 1, lambda: 1.0``