summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-04 05:36:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-04 05:36:05 (GMT)
commite1a4c57663baa16be8bb682c1b890a84087cd21f (patch)
treeafd3dd6598ec3db20a5cce58b8c8c4193f03b002
parent8fc0d918eb6f5867a34dc980032ee08282496bec (diff)
parent793626adcb54fd28f2090c70b4d8a37c074a0e9d (diff)
downloadcpython-e1a4c57663baa16be8bb682c1b890a84087cd21f.zip
cpython-e1a4c57663baa16be8bb682c1b890a84087cd21f.tar.gz
cpython-e1a4c57663baa16be8bb682c1b890a84087cd21f.tar.bz2
Merge heads
-rw-r--r--Misc/NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2c0d92b..0e94742 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -80,6 +80,15 @@ Documentation
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.1
==========================
@@ -160,6 +169,9 @@ Library
- Issue #24913: Fix overrun error in deque.index().
Found by John Leitch and Bryce Darling.
+- 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.