summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-03-16 08:16:31 (GMT)
committerRaymond Hettinger <python@rcn.com>2012-03-16 08:16:31 (GMT)
commitec0e91045ef57e023cb57db7ef017a1ad79f4bdd (patch)
treecb2e17b773d23f1bd0824a1bdda1667c5af3c5f2 /Misc
parent2a1e74a07575847112da4c06cfd2159ef5084639 (diff)
downloadcpython-ec0e91045ef57e023cb57db7ef017a1ad79f4bdd.zip
cpython-ec0e91045ef57e023cb57db7ef017a1ad79f4bdd.tar.gz
cpython-ec0e91045ef57e023cb57db7ef017a1ad79f4bdd.tar.bz2
Improve the memory utilization (and speed) of functools.lru_cache().
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 1c4c215..2f424e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,8 @@ Library
- Issue #11199: Fix the with urllib which hangs on particular ftp urls.
+- Improve the memory utilization and speed of functools.lru_cache.
+
- Issue #14222: Use the new time.steady() function instead of time.time() for
timeout in queue and threading modules to not be affected of system time
update.