summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-13 08:26:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-13 08:26:14 (GMT)
commit1bd8d75be33acaab1f0c277c0d3978975e6ad949 (patch)
tree014b7ec2311a839e1c83d91ee141e993c0796427 /Misc/NEWS
parenteac503aeac6fedc81001b9e1136957d45b9a2c51 (diff)
downloadcpython-1bd8d75be33acaab1f0c277c0d3978975e6ad949.zip
cpython-1bd8d75be33acaab1f0c277c0d3978975e6ad949.tar.gz
cpython-1bd8d75be33acaab1f0c277c0d3978975e6ad949.tar.bz2
Issue #23290: Optimize set_merge() for cases where the target is empty.
(Contributed by Serhiy Storchaka.)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 20cc9d7..77e6f1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins
- Issue #15027: The UTF-32 encoder is now 3x to 7x faster.
+- Issue #23290: Optimize set_merge() for cases where the target is empty.
+ (Contributed by Serhiy Storchaka.)
+
- Issue #20274: When calling a _sqlite.Connection, it now complains if passed
any keyword arguments. Previously it silently ignored them.