Skip to content

Commit b484871

Browse files
committed
Python 3.9.0b3
1 parent ce5e6f0 commit b484871

File tree

6 files changed

+24
-10
lines changed

6 files changed

+24
-10
lines changed

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 9
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
23-
#define PY_RELEASE_SERIAL 2
23+
#define PY_RELEASE_SERIAL 3
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.9.0b2+"
26+
#define PY_VERSION "3.9.0b3"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon Jun 8 20:23:58 2020
2+
# Autogenerated by Sphinx on Tue Jun 9 20:02:32 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.9.0b3.rst

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.. bpo: 40924
2+
.. date: 2020-06-09-18-59-34
3+
.. nonce: qR_YYG
4+
.. release date: 2020-06-09
5+
.. section: Library
6+
7+
`importlib.resources`: Reverted ``TraversableResources`` implementations
8+
from the built-in loaders (SourceFileLoader and ZipImporter) as it was an
9+
incompatible change introduced in 3.9.0 beta 2 causing through a chain of
10+
events for root TLS certificates to be missing.
11+
12+
..
13+
14+
.. bpo: 40684
15+
.. date: 2020-06-08-19-57-05
16+
.. nonce: WIY2-i
17+
.. section: Build
18+
19+
``make install`` now uses the ``PLATLIBDIR`` variable for the destination
20+
``lib-dynload/`` directory when ``./configure --with-platlibdir`` is used.

Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst

-2
This file was deleted.

Misc/NEWS.d/next/Library/2020-06-09-18-59-34.bpo-40924.qR_YYG.rst

-4
This file was deleted.

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.9.0 beta 2
1+
This is Python version 3.9.0 beta 3
22
===================================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.9

0 commit comments

Comments
 (0)