Merge with 3.5.

This commit is contained in:
Serhiy Storchaka 2015-06-01 09:44:25 +03:00
commit d54ae00cfe
3 changed files with 16 additions and 3 deletions

View file

@ -149,3 +149,4 @@ b4cbecbc0781e89a309d03b60a1f75f8499250e6 v3.4.3
82656e28b5e5c4ae48d8dd8b5f0d7968908a82b6 v3.5.0a3
413e0e0004f4f954331cb8122aa55fe208984955 v3.5.0a4
071fefbb5e3db770c6c19fba9994699f121b1cea v3.5.0b1
7a088af5615bf04024e9912068f4bd8f43ed3917 v3.5.0b2

View file

@ -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')"

View file

@ -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.