summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-01 13:56:13 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-01 13:56:13 (GMT)
commit05ddbf0875b449f69616c31fbbe49dd5f3d5e329 (patch)
treee7cbf07a3fad26c69006f38e2216d5c56d1c786b /Misc
parentef2a397a65bf5f321a04aa429efa76f910849e31 (diff)
parentc512adc90d49b1dae3ae14c81826e03c9ea46ba5 (diff)
downloadcpython-05ddbf0875b449f69616c31fbbe49dd5f3d5e329.zip
cpython-05ddbf0875b449f69616c31fbbe49dd5f3d5e329.tar.gz
cpython-05ddbf0875b449f69616c31fbbe49dd5f3d5e329.tar.bz2
Issue #23838: linecache now clears the cache and returns an empty result on
MemoryError.
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 6b63fdc..b34da3a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #23838: linecache now clears the cache and returns an empty result on
+ MemoryError.
+
- Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.
Based on patch by Rafik Draoui.