summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-04 05:34:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-04 05:34:01 (GMT)
commit66d1865597e6a19cc2cd643b478059d11f80b061 (patch)
treeb0000f94ec92ce40e6716707b5ae28d891d35114 /Misc
parent58d83aca10db4c39f34fff38ec41ba10f5f9de97 (diff)
parentb27f3c3e20991c7a97826e886bb43439e9276c34 (diff)
downloadcpython-66d1865597e6a19cc2cd643b478059d11f80b061.zip
cpython-66d1865597e6a19cc2cd643b478059d11f80b061.tar.gz
cpython-66d1865597e6a19cc2cd643b478059d11f80b061.tar.bz2
Merge heads
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS15
1 files changed, 15 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 91c38cb..a02cb6a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,18 @@ Documentation
- Issue #22812: Fix unittest discovery examples.
Patch from Pam McA'Nulty.
+Tests
+-----
+
+- PCbuild\rt.bat now accepts an unlimited number of arguments to pass along
+ to regrtest.py. Previously there was a limit of 9.
+
+Build
+-----
+
+- Issue #24986: It is now possible to build Python on Windows without errors
+ when external libraries are not available.
+
What's New in Python 3.5.0 release candidate 3?
===============================================
@@ -70,6 +82,9 @@ Core and Builtins
Library
-------
+- Issue #24913: Fix overrun error in deque.index().
+ Found by John Leitch and Bryce Darling.
+
- Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is
set beyond size. Based on patch by John Leitch.