diff options
author | 2014-08-12 12:44:52 -0700 | |
---|---|---|
committer | 2014-08-12 12:44:52 -0700 | |
commit | 4d58897fdb0f123340246fac79174a52d7cbcf85 (patch) | |
tree | 312b779808cbfe4b8ce9d9a9e142e0ccb778cca5 /Misc/NEWS | |
parent | Decreased memory requirements of new tests added in issue21448. (diff) | |
download | cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.tar.gz cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.tar.bz2 cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.zip |
Issue 22184: Early detection and reporting of missing lru_cache parameters
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS index 1c87874afc1..310a3b0b36e 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. |