summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-24 06:49:56 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-24 06:49:56 (GMT)
commit45120f272b7e1840f7c760dbad1295fa3ba68eb7 (patch)
treed78865c3c8d66585a50e6fb16579a4c6462a26f1 /Misc
parenta7b83b43ff469edd3d9371164e32fe4d3e4daafa (diff)
downloadcpython-45120f272b7e1840f7c760dbad1295fa3ba68eb7.zip
cpython-45120f272b7e1840f7c760dbad1295fa3ba68eb7.tar.gz
cpython-45120f272b7e1840f7c760dbad1295fa3ba68eb7.tar.bz2
Issue #25447: The lru_cache() wrapper objects now can be copied and pickled
(by returning the original object unchanged).
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 30d5f5e..6a24291 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,9 @@ Core and Builtins
Library
-------
+- Issue #25447: The lru_cache() wrapper objects now can be copied and pickled
+ (by returning the original object unchanged).
+
- Issue #25390: typing: Don't crash on Union[str, Pattern].
- Issue #25441: asyncio: Raise error from drain() when socket is closed.