summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-08 06:12:22 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-08 06:12:22 (GMT)
commit4e50553823c16a65d80f6734b4ac303c18640380 (patch)
tree3aaf8fb8167af091664cfac37d2c337c1f33c3d6 /Misc
parent1bf197eb14c5db5c43b3dc48687ae034690d34c4 (diff)
downloadcpython-4e50553823c16a65d80f6734b4ac303c18640380.zip
cpython-4e50553823c16a65d80f6734b4ac303c18640380.tar.gz
cpython-4e50553823c16a65d80f6734b4ac303c18640380.tar.bz2
Issue #21313: Tolerate truncated buildinfo in sys.version
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 63572ac..ff71902 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -131,6 +131,9 @@ Core and Builtins
Library
-------
+- Issue #21313: Fix the "platform" module to tolerate when sys.version
+ contains truncated build information.
+
- Issue #26839: On Linux, :func:`os.urandom` now calls ``getrandom()`` with
``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
entropy pool is not initialized yet. Patch written by Colm Buckley.