]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
merge heads
authorBenjamin Peterson <benjamin@python.org>
Thu, 12 Jan 2017 07:40:23 +0000 (23:40 -0800)
committerBenjamin Peterson <benjamin@python.org>
Thu, 12 Jan 2017 07:40:23 +0000 (23:40 -0800)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 6a6fb8cc8db99d7dc14c5c5375e3f9738e11aabd,fd08a7e0b8213f495e45680d2b87a64b97969828..ce3853c09f4697b37225c519077d63c4c268a1b7
+++ b/Misc/NEWS
@@@ -15,9 -23,15 +23,18 @@@ Extension Module
  Library
  -------
  
 +- Issue #29006: Revert change from issue #10513 for making sqlite more liable to
 +  emit "database table is locked" errors.
 +
+ - Issue #29188: Support glibc 2.24 on Linux: don't use getentropy() function
+   but read from /dev/urandom to get random bytes, for example in os.urandom().
+   On Linux, getentropy() is implemented which getrandom() is blocking mode,
+   whereas os.urandom() should not block.
+ - Issue #29142: In urllib, suffixes in no_proxy environment variable with
+   leading dots could match related hostnames again (e.g. .b.c matches a.b.c).
+   Patch by Milan Oberkirch.
  - Issue #29094: Offsets in a ZIP file created with extern file object and mode
    "w" now are relative to the start of the file.