diff options
author | Raymond Hettinger <python@rcn.com> | 2014-08-12 19:44:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-08-12 19:44:52 (GMT) |
commit | 4d58897fdb0f123340246fac79174a52d7cbcf85 (patch) | |
tree | 312b779808cbfe4b8ce9d9a9e142e0ccb778cca5 /Misc | |
parent | 4d83192ea05f5c14534edbff2b3a74bb19f01068 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |