summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-08-12 19:44:52 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-08-12 19:44:52 (GMT)
commit4d58897fdb0f123340246fac79174a52d7cbcf85 (patch)
tree312b779808cbfe4b8ce9d9a9e142e0ccb778cca5 /Misc
parent4d83192ea05f5c14534edbff2b3a74bb19f01068 (diff)
downloadcpython-4d58897fdb0f123340246fac79174a52d7cbcf85.zip
cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.tar.gz
cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.tar.bz2
Issue 22184: Early detection and reporting of missing lru_cache parameters
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 1c87874..310a3b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Library
- Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
parsing long line. Original patch by Raymond Hettinger.
+- Issue #22184: The functools LRU Cache decorator factory now gives an earlier
+ and clearer error message when the user forgets the required parameters.
+
- Issue #17923: glob() patterns ending with a slash no longer match non-dirs on
AIX. Based on patch by Delhallt.