summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-27 17:37:20 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-27 17:37:20 (GMT)
commit8651a504752f3265817d0fa5def1b83994888821 (patch)
tree62d939c89e696bb98ab93c9037dd074d9c617f6c /Misc
parent8544e2584d9f51fd31ad84efe01551fd0c510f5d (diff)
downloadcpython-8651a504752f3265817d0fa5def1b83994888821.zip
cpython-8651a504752f3265817d0fa5def1b83994888821.tar.gz
cpython-8651a504752f3265817d0fa5def1b83994888821.tar.bz2
Issue #23359: Specialize set_lookkey intoa lookup function and an insert function.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a01c238..b712b4d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,6 +42,9 @@ Core and Builtins
- Issue #24268: PEP 489: Multi-phase extension module initialization.
Patch by Petr Viktorin.
+- Issue #23359: Optimize set object internals by specializing the
+ hash table search into a lookup function and an insert function.
+
- Issue #23955: Add pyvenv.cfg option to suppress registry/environment
lookup for generating sys.path on Windows.