diff --git a/.hgtags b/.hgtags index a20176a4825..f22a0281c7b 100644 --- a/.hgtags +++ b/.hgtags @@ -149,3 +149,4 @@ b4cbecbc0781e89a309d03b60a1f75f8499250e6 v3.4.3 82656e28b5e5c4ae48d8dd8b5f0d7968908a82b6 v3.5.0a3 413e0e0004f4f954331cb8122aa55fe208984955 v3.5.0a4 071fefbb5e3db770c6c19fba9994699f121b1cea v3.5.0b1 +7a088af5615bf04024e9912068f4bd8f43ed3917 v3.5.0b2 diff --git a/Doc/Makefile b/Doc/Makefile index 200a9f7d1fd..a42e98bd9cd 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -96,8 +96,8 @@ doctest: pydoc-topics: BUILDER = pydoc-topics pydoc-topics: build - @echo "Building finished; now copy build/pydoc-topics/topics.py" \ - "to ../Lib/pydoc_data/topics.py" + @echo "Building finished; now run this:" \ + "cp build/pydoc-topics/topics.py ../Lib/pydoc_data/topics.py" htmlview: html $(PYTHON) -c "import webbrowser; webbrowser.open('build/html/index.html')" diff --git a/Misc/NEWS b/Misc/NEWS index 844ae7fa183..8203f2cafac 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -14,7 +14,7 @@ Library ------- -What's New in Python 3.5.0 beta 2? +What's New in Python 3.5.0 beta 3? ================================== Release date: 2015-07-05 @@ -22,6 +22,18 @@ Release date: 2015-07-05 Core and Builtins ----------------- +Library +------- + + +What's New in Python 3.5.0 beta 2? +================================== + +Release date: 2015-05-31 + +Core and Builtins +----------------- + - Issue #24284: The startswith and endswith methods of the str class no longer return True when finding the empty string and the indexes are completely out of range.