summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-09-09 23:01:20 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-09-09 23:01:20 (GMT)
commitb21d48dabf40b5adc64c8968322c5974b6f4e572 (patch)
tree951da0a8928e28184390868720f73bb2fe65edcc
parent7f704c11dbf6c766e11ed52c38fb732f7beda904 (diff)
parent7330da42978ffcde525295ffc928ee3e0eedfb1b (diff)
downloadcpython-b21d48dabf40b5adc64c8968322c5974b6f4e572.zip
cpython-b21d48dabf40b5adc64c8968322c5974b6f4e572.tar.gz
cpython-b21d48dabf40b5adc64c8968322c5974b6f4e572.tar.bz2
merge
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0db3e09..4fe41dc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,8 +21,15 @@ Core and Builtins
Library
-------
+
- Issue #15876: Fix a refleak in the curses module: window.encoding.
+- Issue #15881: Fixed atexit hook in multiprocessing. Original patch
+ by Chris McDonough.
+
+- Issue #15340: Fix importing the random module when /dev/urandom cannot
+ be opened. This was a regression caused by the hash randomization patch.
+
- Issue #15841: The readable(), writable() and seekable() methods of BytesIO
and StringIO objects now raise ValueError when the object has been closed.
Patch by Alessandro Moura.