diff options
author | Łukasz Langa <lukasz@langa.pl> | 2020-06-09 18:52:10 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2020-06-09 18:52:10 (GMT) |
commit | b484871ba707ae2f9898e22effcd297c19d4c5ea (patch) | |
tree | f00ef7010010ae53e401f8349f8b8c46ea81ffb7 | |
parent | ce5e6f098f8a270e50b989baa75765584573706b (diff) | |
download | cpython-b484871ba707ae2f9898e22effcd297c19d4c5ea.zip cpython-b484871ba707ae2f9898e22effcd297c19d4c5ea.tar.gz cpython-b484871ba707ae2f9898e22effcd297c19d4c5ea.tar.bz2 |
Python 3.9.0b3v3.9.0b3
-rw-r--r-- | Include/patchlevel.h | 4 | ||||
-rw-r--r-- | Lib/pydoc_data/topics.py | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.9.0b3.rst | 20 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-06-09-18-59-34.bpo-40924.qR_YYG.rst | 4 | ||||
-rw-r--r-- | README.rst | 2 |
6 files changed, 24 insertions, 10 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index b70b0bf..87d7ece 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -20,10 +20,10 @@ #define PY_MINOR_VERSION 9 #define PY_MICRO_VERSION 0 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA -#define PY_RELEASE_SERIAL 2 +#define PY_RELEASE_SERIAL 3 /* Version as a string */ -#define PY_VERSION "3.9.0b2+" +#define PY_VERSION "3.9.0b3" /*--end constants--*/ /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py index cc6faa9..4ba22e3 100644 --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Autogenerated by Sphinx on Mon Jun 8 20:23:58 2020 +# Autogenerated by Sphinx on Tue Jun 9 20:02:32 2020 topics = {'assert': 'The "assert" statement\n' '**********************\n' '\n' diff --git a/Misc/NEWS.d/3.9.0b3.rst b/Misc/NEWS.d/3.9.0b3.rst new file mode 100644 index 0000000..f43243e --- /dev/null +++ b/Misc/NEWS.d/3.9.0b3.rst @@ -0,0 +1,20 @@ +.. bpo: 40924 +.. date: 2020-06-09-18-59-34 +.. nonce: qR_YYG +.. release date: 2020-06-09 +.. section: Library + +`importlib.resources`: Reverted ``TraversableResources`` implementations +from the built-in loaders (SourceFileLoader and ZipImporter) as it was an +incompatible change introduced in 3.9.0 beta 2 causing through a chain of +events for root TLS certificates to be missing. + +.. + +.. bpo: 40684 +.. date: 2020-06-08-19-57-05 +.. nonce: WIY2-i +.. section: Build + +``make install`` now uses the ``PLATLIBDIR`` variable for the destination +``lib-dynload/`` directory when ``./configure --with-platlibdir`` is used. diff --git a/Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst b/Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst deleted file mode 100644 index 0495e5e..0000000 --- a/Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst +++ /dev/null @@ -1,2 +0,0 @@ -``make install`` now uses the ``PLATLIBDIR`` variable for the destination -``lib-dynload/`` directory when ``./configure --with-platlibdir`` is used. diff --git a/Misc/NEWS.d/next/Library/2020-06-09-18-59-34.bpo-40924.qR_YYG.rst b/Misc/NEWS.d/next/Library/2020-06-09-18-59-34.bpo-40924.qR_YYG.rst deleted file mode 100644 index 4fc65e2..0000000 --- a/Misc/NEWS.d/next/Library/2020-06-09-18-59-34.bpo-40924.qR_YYG.rst +++ /dev/null @@ -1,4 +0,0 @@ -`importlib.resources`: Reverted ``TraversableResources`` implementations -from the built-in loaders (SourceFileLoader and ZipImporter) as it was an -incompatible change introduced in 3.9.0 beta 2 causing through a chain of -events for root TLS certificates to be missing. @@ -1,4 +1,4 @@ -This is Python version 3.9.0 beta 2 +This is Python version 3.9.0 beta 3 =================================== .. image:: https://travis-ci.org/python/cpython.svg?branch=3.9 |