Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f5002bd

Browse files
committed
Version bump to 3.5, step 2.
1 parent d922dc4 commit f5002bd

11 files changed

Lines changed: 46 additions & 35 deletions

File tree

Doc/tutorial/interpreter.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ Using the Python Interpreter
1010
Invoking the Interpreter
1111
========================
1212

13-
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.4`
13+
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.5`
1414
on those machines where it is available; putting :file:`/usr/local/bin` in your
1515
Unix shell's search path makes it possible to start it by typing the command:
1616

1717
.. code-block:: text
1818
19-
python3.4
19+
python3.5
2020
2121
to the shell. [#]_ Since the choice of the directory where the interpreter lives
2222
is an installation option, other places are possible; check with your local
2323
Python guru or system administrator. (E.g., :file:`/usr/local/python` is a
2424
popular alternative location.)
2525

2626
On Windows machines, the Python installation is usually placed in
27-
:file:`C:\\Python34`, though you can change this when you're running the
27+
:file:`C:\\Python35`, though you can change this when you're running the
2828
installer. To add this directory to your path, you can type the following
2929
command into the command prompt in a DOS box::
3030

31-
set path=%path%;C:\python34
31+
set path=%path%;C:\python35
3232

3333
Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
3434
Windows) at the primary prompt causes the interpreter to exit with a zero exit
@@ -95,8 +95,8 @@ with the *secondary prompt*, by default three dots (``...``). The interpreter
9595
prints a welcome message stating its version number and a copyright notice
9696
before printing the first prompt::
9797

98-
$ python3.4
99-
Python 3.4 (default, Sep 24 2012, 09:25:04)
98+
$ python3.5
99+
Python 3.5 (default, Sep 24 2012, 09:25:04)
100100
[GCC 4.6.3] on linux2
101101
Type "help", "copyright", "credits" or "license" for more information.
102102
>>>
@@ -149,7 +149,7 @@ Executable Python Scripts
149149
On BSD'ish Unix systems, Python scripts can be made directly executable, like
150150
shell scripts, by putting the line ::
151151

152-
#! /usr/bin/env python3.4
152+
#! /usr/bin/env python3.5
153153

154154
(assuming that the interpreter is on the user's :envvar:`PATH`) at the beginning
155155
of the script and giving the file an executable mode. The ``#!`` must be the

Doc/tutorial/stdlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ operating system::
1515

1616
>>> import os
1717
>>> os.getcwd() # Return the current working directory
18-
'C:\\Python34'
18+
'C:\\Python35'
1919
>>> os.chdir('/server/accesslogs') # Change current working directory
2020
>>> os.system('mkdir today') # Run the command mkdir in the system shell
2121
0

Doc/tutorial/stdlib2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ applications include caching objects that are expensive to create::
277277
Traceback (most recent call last):
278278
File "<stdin>", line 1, in <module>
279279
d['primary'] # entry was automatically removed
280-
File "C:/python34/lib/weakref.py", line 46, in __getitem__
280+
File "C:/python35/lib/weakref.py", line 46, in __getitem__
281281
o = self.data[key]()
282282
KeyError: 'primary'
283283

Include/patchlevel.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
/* Version parsed out into numeric values */
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
20-
#define PY_MINOR_VERSION 4
20+
#define PY_MINOR_VERSION 5
2121
#define PY_MICRO_VERSION 0
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.4.0+"
26+
#define PY_VERSION "3.5.0a0"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# Updated automatically by the Python release process.
1414
#
1515
#--start constants--
16-
__version__ = "3.4.0rc1"
16+
__version__ = "3.5.0a0"
1717
#--end constants--

Lib/idlelib/idlever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
IDLE_VERSION = "3.4.0rc1"
1+
IDLE_VERSION = "3.5.0a0"

Misc/NEWS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Python News
33
+++++++++++
44

5+
What's New in Python 3.5 alpha 1?
6+
=================================
7+
8+
Release date: TBA
9+
10+
Core and Builtins
11+
-----------------
12+
13+
Library
14+
-------
15+
516
What's New in Python 3.4.1rc1?
617
==============================
718

Misc/RPM/python-3.5.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
%define name python
4141
#--start constants--
42-
%define version 3.4.0rc1
43-
%define libvers 3.4
42+
%define version 3.5.0a0
43+
%define libvers 3.5
4444
#--end constants--
4545
%define release 1pydotorg
4646
%define __prefix /usr

README

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.4.0 release candidate 1
2-
================================================
1+
This is Python version 3.5.0 alpha 1
2+
====================================
33

44
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
55
2012, 2013, 2014 Python Software Foundation. All rights reserved.
@@ -52,9 +52,9 @@ What's New
5252
----------
5353

5454
We try to have a comprehensive overview of the changes in the "What's New in
55-
Python 3.4" document, found at
55+
Python 3.5" document, found at
5656

57-
http://docs.python.org/3.4/whatsnew/3.4.html
57+
http://docs.python.org/3.5/whatsnew/3.5.html
5858

5959
For a more detailed change log, read Misc/NEWS (though this file, too, is
6060
incomplete, and also doesn't list anything merged in from the 2.7 release under
@@ -67,9 +67,9 @@ entitled "Installing multiple versions".
6767
Documentation
6868
-------------
6969

70-
Documentation for Python 3.4 is online, updated daily:
70+
Documentation for Python 3.5 is online, updated daily:
7171

72-
http://docs.python.org/3.4/
72+
http://docs.python.org/3.5/
7373

7474
It can also be downloaded in many formats for faster access. The documentation
7575
is downloadable in HTML, PDF, and reStructuredText formats; the latter version
@@ -94,7 +94,7 @@ backported versions of certain key Python 3.x features.
9494
A source-to-source translation tool, "2to3", can take care of the mundane task
9595
of converting large amounts of source code. It is not a complete solution but
9696
is complemented by the deprecation warnings in 2.6. See
97-
http://docs.python.org/3.4/library/2to3.html for more information.
97+
http://docs.python.org/3.5/library/2to3.html for more information.
9898

9999

100100
Testing
@@ -132,7 +132,7 @@ same prefix you must decide which version (if any) is your "primary" version.
132132
Install that version using "make install". Install all other versions using
133133
"make altinstall".
134134

135-
For example, if you want to install Python 2.6, 2.7 and 3.4 with 2.7 being the
135+
For example, if you want to install Python 2.6, 2.7 and 3.5 with 2.7 being the
136136
primary version, you would execute "make install" in your 2.7 build directory
137137
and "make altinstall" in the others.
138138

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for python 3.4.
3+
# Generated by GNU Autoconf 2.69 for python 3.5.
44
#
55
# Report bugs to <http://bugs.python.org/>.
66
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
580580
# Identity of this package.
581581
PACKAGE_NAME='python'
582582
PACKAGE_TARNAME='python'
583-
PACKAGE_VERSION='3.4'
584-
PACKAGE_STRING='python 3.4'
583+
PACKAGE_VERSION='3.5'
584+
PACKAGE_STRING='python 3.5'
585585
PACKAGE_BUGREPORT='http://bugs.python.org/'
586586
PACKAGE_URL=''
587587

@@ -1368,7 +1368,7 @@ if test "$ac_init_help" = "long"; then
13681368
# Omit some internal or obsolete options to make the list less imposing.
13691369
# This message is too long to be a string in the A/UX 3.1 sh.
13701370
cat <<_ACEOF
1371-
\`configure' configures python 3.4 to adapt to many kinds of systems.
1371+
\`configure' configures python 3.5 to adapt to many kinds of systems.
13721372
13731373
Usage: $0 [OPTION]... [VAR=VALUE]...
13741374
@@ -1433,7 +1433,7 @@ fi
14331433

14341434
if test -n "$ac_init_help"; then
14351435
case $ac_init_help in
1436-
short | recursive ) echo "Configuration of python 3.4:";;
1436+
short | recursive ) echo "Configuration of python 3.5:";;
14371437
esac
14381438
cat <<\_ACEOF
14391439
@@ -1580,7 +1580,7 @@ fi
15801580
test -n "$ac_init_help" && exit $ac_status
15811581
if $ac_init_version; then
15821582
cat <<\_ACEOF
1583-
python configure 3.4
1583+
python configure 3.5
15841584
generated by GNU Autoconf 2.69
15851585
15861586
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2419,7 +2419,7 @@ cat >config.log <<_ACEOF
24192419
This file contains any messages produced by compilers while
24202420
running configure, to aid debugging if configure makes a mistake.
24212421
2422-
It was created by python $as_me 3.4, which was
2422+
It was created by python $as_me 3.5, which was
24232423
generated by GNU Autoconf 2.69. Invocation command line was
24242424
24252425
$ $0 $@
@@ -2989,7 +2989,7 @@ rm confdefs.h
29892989
mv confdefs.h.new confdefs.h
29902990

29912991

2992-
VERSION=3.4
2992+
VERSION=3.5
29932993

29942994
# Version number of Python's own shared library file.
29952995

@@ -15900,7 +15900,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1590015900
# report actual input values of CONFIG_FILES etc. instead of their
1590115901
# values after options handling.
1590215902
ac_log="
15903-
This file was extended by python $as_me 3.4, which was
15903+
This file was extended by python $as_me 3.5, which was
1590415904
generated by GNU Autoconf 2.69. Invocation command line was
1590515905
1590615906
CONFIG_FILES = $CONFIG_FILES
@@ -15962,7 +15962,7 @@ _ACEOF
1596215962
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1596315963
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1596415964
ac_cs_version="\\
15965-
python config.status 3.4
15965+
python config.status 3.5
1596615966
configured by $0, generated by GNU Autoconf 2.69,
1596715967
with options \\"\$ac_cs_config\\"
1596815968

0 commit comments

Comments
 (0)