Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 5489bda

Browse files
committed
Start of 3.8.0a0
1 parent 6e41cd9 commit 5489bda

File tree

10 files changed

+824
-824
lines changed

10 files changed

+824
-824
lines changed

Doc/tutorial/interpreter.rst

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

13-
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.7`
13+
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.8`
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.7
19+
python3.8
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
@@ -98,8 +98,8 @@ before printing the first prompt:
9898

9999
.. code-block:: shell-session
100100
101-
$ python3.7
102-
Python 3.7 (default, Sep 16 2015, 09:25:04)
101+
$ python3.8
102+
Python 3.8 (default, Sep 16 2015, 09:25:04)
103103
[GCC 4.8.2] on linux
104104
Type "help", "copyright", "credits" or "license" for more information.
105105
>>>

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:\\Python37'
18+
'C:\\Python38'
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
@@ -278,7 +278,7 @@ applications include caching objects that are expensive to create::
278278
Traceback (most recent call last):
279279
File "<stdin>", line 1, in <module>
280280
d['primary'] # entry was automatically removed
281-
File "C:/python37/lib/weakref.py", line 46, in __getitem__
281+
File "C:/python38/lib/weakref.py", line 46, in __getitem__
282282
o = self.data[key]()
283283
KeyError: 'primary'
284284

Include/patchlevel.h

Lines changed: 4 additions & 4 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 7
20+
#define PY_MINOR_VERSION 8
2121
#define PY_MICRO_VERSION 0
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
23-
#define PY_RELEASE_SERIAL 1
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23+
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.7.0b1"
26+
#define PY_VERSION "3.8.0a0"
2727
/*--end constants--*/
2828

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

PC/pyconfig.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
284284
file in their Makefile (other compilers are
285285
generally taken care of by distutils.) */
286286
# if defined(_DEBUG)
287-
# pragma comment(lib,"python37_d.lib")
287+
# pragma comment(lib,"python38_d.lib")
288288
# elif defined(Py_LIMITED_API)
289289
# pragma comment(lib,"python3.lib")
290290
# else
291-
# pragma comment(lib,"python37.lib")
291+
# pragma comment(lib,"python38.lib")
292292
# endif /* _DEBUG */
293293
# endif /* _MSC_VER */
294294
# endif /* Py_BUILD_CORE */

PC/python3.def

Lines changed: 793 additions & 793 deletions
Large diffs are not rendered by default.

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Debug
3838
Used to build Python with extra debugging capabilities, equivalent
3939
to using ./configure --with-pydebug on UNIX. All binaries built
4040
using this configuration have "_d" added to their name:
41-
python37_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
41+
python38_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
4242
build and rt (run test) batch files in this directory accept a -d
4343
option for debug builds. If you are building Python to help with
4444
development of CPython, you will most likely use this configuration.

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.7.0 beta 1
2-
===================================
1+
This is Python version 3.8.0 alpha 0
2+
====================================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=master
55
:alt: CPython build status on Travis CI
@@ -126,7 +126,7 @@ What's New
126126
----------
127127

128128
We have a comprehensive overview of the changes in the `What's New in Python
129-
3.7 <https://docs.python.org/3.7/whatsnew/3.7.html>`_ document. For a more
129+
3.8 <https://docs.python.org/3.8/whatsnew/3.8.html>`_ document. For a more
130130
detailed change log, read `Misc/NEWS
131131
<https://github.com/python/cpython/blob/master/Misc/NEWS.d>`_, but a full
132132
accounting of changes can only be gleaned from the `commit history
@@ -139,7 +139,7 @@ entitled "Installing multiple versions".
139139
Documentation
140140
-------------
141141

142-
`Documentation for Python 3.7 <https://docs.python.org/3.7/>`_ is online,
142+
`Documentation for Python 3.8 <https://docs.python.org/3.8/>`_ is online,
143143
updated daily.
144144

145145
It can also be downloaded in many formats for faster access. The documentation
@@ -195,8 +195,8 @@ intend to install multiple versions using the same prefix you must decide which
195195
version (if any) is your "primary" version. Install that version using ``make
196196
install``. Install all other versions using ``make altinstall``.
197197

198-
For example, if you want to install Python 2.7, 3.6, and 3.7 with 3.7 being the
199-
primary version, you would execute ``make install`` in your 3.7 build directory
198+
For example, if you want to install Python 2.7, 3.6, and 3.8 with 3.8 being the
199+
primary version, you would execute ``make install`` in your 3.8 build directory
200200
and ``make altinstall`` in the others.
201201

202202

@@ -226,7 +226,7 @@ All current PEPs, as well as guidelines for submitting a new PEP, are listed at
226226
Release Schedule
227227
----------------
228228

229-
See :pep:`537` for Python 3.7 release details.
229+
See :pep:`569` for Python 3.8 release details.
230230

231231

232232
Copyright and License Information

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.7.
3+
# Generated by GNU Autoconf 2.69 for python 3.8.
44
#
55
# Report bugs to <https://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.7'
584-
PACKAGE_STRING='python 3.7'
583+
PACKAGE_VERSION='3.8'
584+
PACKAGE_STRING='python 3.8'
585585
PACKAGE_BUGREPORT='https://bugs.python.org/'
586586
PACKAGE_URL=''
587587

@@ -1395,7 +1395,7 @@ if test "$ac_init_help" = "long"; then
13951395
# Omit some internal or obsolete options to make the list less imposing.
13961396
# This message is too long to be a string in the A/UX 3.1 sh.
13971397
cat <<_ACEOF
1398-
\`configure' configures python 3.7 to adapt to many kinds of systems.
1398+
\`configure' configures python 3.8 to adapt to many kinds of systems.
13991399
14001400
Usage: $0 [OPTION]... [VAR=VALUE]...
14011401
@@ -1461,7 +1461,7 @@ fi
14611461

14621462
if test -n "$ac_init_help"; then
14631463
case $ac_init_help in
1464-
short | recursive ) echo "Configuration of python 3.7:";;
1464+
short | recursive ) echo "Configuration of python 3.8:";;
14651465
esac
14661466
cat <<\_ACEOF
14671467
@@ -1628,7 +1628,7 @@ fi
16281628
test -n "$ac_init_help" && exit $ac_status
16291629
if $ac_init_version; then
16301630
cat <<\_ACEOF
1631-
python configure 3.7
1631+
python configure 3.8
16321632
generated by GNU Autoconf 2.69
16331633
16341634
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2337,7 +2337,7 @@ cat >config.log <<_ACEOF
23372337
This file contains any messages produced by compilers while
23382338
running configure, to aid debugging if configure makes a mistake.
23392339
2340-
It was created by python $as_me 3.7, which was
2340+
It was created by python $as_me 3.8, which was
23412341
generated by GNU Autoconf 2.69. Invocation command line was
23422342
23432343
$ $0 $@
@@ -2957,7 +2957,7 @@ rm confdefs.h
29572957
mv confdefs.h.new confdefs.h
29582958

29592959

2960-
VERSION=3.7
2960+
VERSION=3.8
29612961

29622962
# Version number of Python's own shared library file.
29632963

@@ -17500,7 +17500,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1750017500
# report actual input values of CONFIG_FILES etc. instead of their
1750117501
# values after options handling.
1750217502
ac_log="
17503-
This file was extended by python $as_me 3.7, which was
17503+
This file was extended by python $as_me 3.8, which was
1750417504
generated by GNU Autoconf 2.69. Invocation command line was
1750517505
1750617506
CONFIG_FILES = $CONFIG_FILES
@@ -17562,7 +17562,7 @@ _ACEOF
1756217562
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1756317563
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1756417564
ac_cs_version="\\
17565-
python config.status 3.7
17565+
python config.status 3.8
1756617566
configured by $0, generated by GNU Autoconf 2.69,
1756717567
with options \\"\$ac_cs_config\\"
1756817568

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dnl * Please run autoreconf to test your changes! *
33
dnl ***********************************************
44

55
# Set VERSION so we only need to edit in one place (i.e., here)
6-
m4_define(PYTHON_VERSION, 3.7)
6+
m4_define(PYTHON_VERSION, 3.8)
77

88
AC_PREREQ(2.65)
99

0 commit comments

Comments
 (0)