summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-14 18:42:22 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-14 18:42:22 (GMT)
commit79f19f9e7c1849be68bba57ee78c116714e2c5ea (patch)
treeb94507a79a0fbd36d29ee7f28d0a3d63e2d56b7f /Misc
parent03241e801780edd967923d1cce00c2d07b208e58 (diff)
parent84d28b4ee5983bcb048323a0e56ea4c5498a0652 (diff)
downloadcpython-79f19f9e7c1849be68bba57ee78c116714e2c5ea.zip
cpython-79f19f9e7c1849be68bba57ee78c116714e2c5ea.tar.gz
cpython-79f19f9e7c1849be68bba57ee78c116714e2c5ea.tar.bz2
Issue #19623: Fixed writing to unseekable files in the aifc module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 95f7752..e1a5c54 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,8 @@ Core and Builtins
Library
-------
+- Issue #19623: Fixed writing to unseekable files in the aifc module.
+
- Issue #19946: multiprocessing.spawn now raises ImportError when the module to
be used as the main module cannot be imported.