Merge release engineering changes with 3.5 branch head.

This commit is contained in:
Larry Hastings 2015-05-31 21:43:57 -07:00
commit c72056a1ae
6 changed files with 20 additions and 7 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

@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 5
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
#define PY_RELEASE_SERIAL 1
#define PY_RELEASE_SERIAL 2
/* Version as a string */
#define PY_VERSION "3.5.0b1+"
#define PY_VERSION "3.5.0b2+"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
Python News
+++++++++++
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
@ -10,6 +10,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.

2
README
View File

@ -1,4 +1,4 @@
This is Python version 3.5.0 beta 1
This is Python version 3.5.0 beta 2
===================================
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,