Python 3.8.1
-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE4/8oOcBIslwITevpsmmV4xAlBWgFAl36YEkACgkQsmmV4xAl BWh59Q/+OXxgPm7u3EG3KSDZk+Hcd7d7jcuODR67veRjIAe7PSvdPIttC39qVWv5 j6mnH0xP3Q6wOcpOu+EpKiU60tvTYRVdk7BGCqZsFaQlIZY8lwbm30bw9x/wrFoa Qt7W1yJ00avn1x1rZ1ZejyOI9RL8im15WJF5NpS3eqX1EL+UBScrsQNjHGIYi+pM ERm+9BTTYVQ3odYnvQ6FsJIASf3IbWcQULtRsr7kGSP4E0Y9PXWCvy89tWay3R2N j1L11w7uL/RgqJUvfUljGwuWp2kiBEC1xIM85AzTo464IMIfix4aGhriLh4qX6ZD 14sJmVJERdSqigpJlhwlaGIs2xOIzOcZ3Tok2aiJDGD9iqnsrtZFJRVGQxu4dExa UPfhskUxMdTEMD1vPAgU43JWZ5kMoz+eYP246UQELUCDqhW8ZP5f0Jx+MS8EcFf6 qY1E/5RsxxSgOE5lcb25Cy63dvFVVtOHfLCt//P/jr8NP+hgpdVVJlqZNhKgoUGs KT75wck2MLss+OR0itCzdPsqUc27oMZJEhzeoq6+xNP8IysrTWl7AlmCPoinsaW0 cKdlx47jnD9JYAjXXf8i7yjov2vaS7npWQYYujd01FGB9Ex7wSfAt54HmVfC1UuE Wl6t4s6PN0S9GJqHvbkrWkS6fjaKwHJAWH8Hi3Ik9omTGDgZxvY= =emOv -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQJEBAABCAAuFiEE4/8oOcBIslwITevpsmmV4xAlBWgFAl37LjYQHGx1a2FzekBs YW5nYS5wbAAKCRCyaZXjECUFaKcrD/sGsjOSMynwqBUWBIKOUpkxm8mhfsq4UeX+ ThsvnruF+TY6vr/v3PO8+YS0TItdlN4xhKWfWeMrIJQwXug4ZFOCnK1yKd16iD5o yo259NhOiBX6v41I29L9PGYXdqQQDRd5MdI/8t9hx/XZVgBuYjXoesyRPvEbuPIJ 8QlxVYx+lhxYeQ/1bEsl9CGX+PIYfWp+v/u2xsi9e5g8gMX0nbkv3wma2JDwDWhM nuG9yT8y1zZAGUHEKqKA4Gg2Iwrq2vHBZXfXLuFtTEl+EGUbOVjk0DBA/lu6prP5 GrVDMrwEmOA9EN/ooXtpGno/mpX2vj6LmUPsfwgtAMDUB73UmkguohdjmpZrW/qf 8U7oAXAw8ifkC09aHfIWKZHp8xZjhXO4v7hn8bMjTsurxQgCAJciBhrYv9nf2JHl ayA+SkScX9rRmAp0QuyjCq6QZyix2CG5ko6nnubg7WuvZbnXzgRum9MAOVa61Inn lYlkywmUQp4XhvuW3hOVyV83KZMKNmg0lsziy8bKGPd2cwMBxXTqiNLrDgUAvkBN 7KlBoT6DWoRt4X1JWEFbCavqSoEjG1QHzfUN6QVcMnSzE9MGKFu5ICNKPgKxPmqf 4qxP9oeWjUwpgrGL7iem91XPq79FrMeubiyIH/b88oR6qHhceIe7MJ73fyBNe5uN uj+5BUpujg== =pQD9 -----END PGP SIGNATURE----- Merge tag 'v3.8.1' into 3.8 Python 3.8.1
This commit is contained in:
commit
114aad7b14
|
@ -19,11 +19,11 @@
|
|||
#define PY_MAJOR_VERSION 3
|
||||
#define PY_MINOR_VERSION 8
|
||||
#define PY_MICRO_VERSION 1
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
|
||||
#define PY_RELEASE_SERIAL 1
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
|
||||
#define PY_RELEASE_SERIAL 0
|
||||
|
||||
/* Version as a string */
|
||||
#define PY_VERSION "3.8.1rc1+"
|
||||
#define PY_VERSION "3.8.1"
|
||||
/*--end constants--*/
|
||||
|
||||
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Autogenerated by Sphinx on Mon Dec 9 18:44:17 2019
|
||||
# Autogenerated by Sphinx on Wed Dec 18 18:17:58 2019
|
||||
topics = {'assert': 'The "assert" statement\n'
|
||||
'**********************\n'
|
||||
'\n'
|
||||
|
|
|
@ -0,0 +1,108 @@
|
|||
.. bpo: 39080
|
||||
.. date: 2019-12-17-21-45-36
|
||||
.. nonce: OrxEVS
|
||||
.. release date: 2019-12-18
|
||||
.. section: Core and Builtins
|
||||
|
||||
Fix the value of *end_col_offset* for Starred Expression AST nodes when they
|
||||
are among the elements in the *args* attribute of Call AST nodes.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 39031
|
||||
.. date: 2019-12-12-21-05-43
|
||||
.. nonce: imlCYZ
|
||||
.. section: Core and Builtins
|
||||
|
||||
When parsing an "elif" node, lineno and col_offset of the node now point to
|
||||
the "elif" keyword and not to its condition, making it consistent with the
|
||||
"if" node. Patch by Lysandros Nikolaou.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 39008
|
||||
.. date: 2019-12-09-10-38-51
|
||||
.. nonce: Rrp6f1
|
||||
.. section: Core and Builtins
|
||||
|
||||
:c:func:`PySys_Audit` now requires ``Py_ssize_t`` to be used for size
|
||||
arguments in the format string, regardless of whethen ``PY_SSIZE_T_CLEAN``
|
||||
was defined at include time.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 39022
|
||||
.. date: 2019-12-10-23-34-48
|
||||
.. nonce: QDtIxI
|
||||
.. section: Library
|
||||
|
||||
Update importliib.metadata to include improvements from importlib_metadata
|
||||
1.3 including better serialization of EntryPoints and improved documentation
|
||||
for custom finders.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 38811
|
||||
.. date: 2019-11-15-18-06-04
|
||||
.. nonce: AmdQ6M
|
||||
.. section: Library
|
||||
|
||||
Fix an unhandled exception in :mod:`pathlib` when :meth:`os.link` is
|
||||
missing. Patch by Toke Høiland-Jørgensen.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 36406
|
||||
.. date: 2019-03-24-12-12-27
|
||||
.. nonce: mCEkOl
|
||||
.. section: Library
|
||||
|
||||
Handle namespace packages in :mod:`doctest`. Patch by Karthikeyan
|
||||
Singaravelan.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 38546
|
||||
.. date: 2019-12-17-15-27-07
|
||||
.. nonce: 82JwN2
|
||||
.. section: Tests
|
||||
|
||||
Multiprocessing and concurrent.futures tests now stop the resource tracker
|
||||
process when tests complete.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 39007
|
||||
.. date: 2019-12-09-10-40-34
|
||||
.. nonce: vtarxo
|
||||
.. section: Windows
|
||||
|
||||
Add auditing events to functions in :mod:`winreg`.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 38295
|
||||
.. date: 2019-12-17-03-43-04
|
||||
.. nonce: hgDvlB
|
||||
.. section: macOS
|
||||
|
||||
Prevent failure of test_relative_path in test_py_compile on macOS Catalina.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 38944
|
||||
.. date: 2019-11-30-12-10-36
|
||||
.. nonce: _3xjKG
|
||||
.. section: IDLE
|
||||
|
||||
Excape key now closes IDLE completion windows. Patch by Johnny Najera.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 38943
|
||||
.. date: 2019-11-29-23-44-11
|
||||
.. nonce: 8pUKKs
|
||||
.. section: IDLE
|
||||
|
||||
Fix IDLE autocomplete windows not always appearing on some systems. Patch by
|
||||
Johnny Najera.
|
|
@ -1,3 +0,0 @@
|
|||
:c:func:`PySys_Audit` now requires ``Py_ssize_t`` to be used for size
|
||||
arguments in the format string, regardless of whethen ``PY_SSIZE_T_CLEAN``
|
||||
was defined at include time.
|
|
@ -1,2 +0,0 @@
|
|||
When parsing an "elif" node, lineno and col_offset of the node now point to the "elif" keyword and not to its condition, making it consistent with the "if" node.
|
||||
Patch by Lysandros Nikolaou.
|
|
@ -1 +0,0 @@
|
|||
Fix the value of *end_col_offset* for Starred Expression AST nodes when they are among the elements in the *args* attribute of Call AST nodes.
|
|
@ -1,2 +0,0 @@
|
|||
Fix IDLE autocomplete windows not always appearing on some systems.
|
||||
Patch by Johnny Najera.
|
|
@ -1 +0,0 @@
|
|||
Excape key now closes IDLE completion windows. Patch by Johnny Najera.
|
|
@ -1 +0,0 @@
|
|||
Handle namespace packages in :mod:`doctest`. Patch by Karthikeyan Singaravelan.
|
|
@ -1 +0,0 @@
|
|||
Fix an unhandled exception in :mod:`pathlib` when :meth:`os.link` is missing. Patch by Toke Høiland-Jørgensen.
|
|
@ -1 +0,0 @@
|
|||
Update importliib.metadata to include improvements from importlib_metadata 1.3 including better serialization of EntryPoints and improved documentation for custom finders.
|
|
@ -1,2 +0,0 @@
|
|||
Multiprocessing and concurrent.futures tests now stop the resource tracker
|
||||
process when tests complete.
|
|
@ -1 +0,0 @@
|
|||
Add auditing events to functions in :mod:`winreg`.
|
|
@ -1 +0,0 @@
|
|||
Prevent failure of test_relative_path in test_py_compile on macOS Catalina.
|
|
@ -1,5 +1,5 @@
|
|||
This is Python version 3.8.1rc1
|
||||
===============================
|
||||
This is Python version 3.8.1
|
||||
============================
|
||||
|
||||
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.8
|
||||
:alt: CPython build status on Travis CI
|
||||
|
|
Loading…
Reference in New Issue