Skip to content

Commit 6f8c832

Browse files
committed
Python 3.8.3
1 parent a63c611 commit 6f8c832

15 files changed

+113
-22
lines changed

Include/patchlevel.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 8
2121
#define PY_MICRO_VERSION 3
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23+
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.8.3rc1+"
26+
#define PY_VERSION "3.8.3"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Apr 29 19:18:01 2020
2+
# Autogenerated by Sphinx on Wed May 13 19:29:27 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.8.3.rst

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
.. bpo: 40527
2+
.. date: 2020-05-06-14-52-35
3+
.. nonce: gTNKuy
4+
.. release date: 2020-05-13
5+
.. section: Core and Builtins
6+
7+
Fix command line argument parsing: no longer write errors multiple times
8+
into stderr.
9+
10+
..
11+
12+
.. bpo: 40417
13+
.. date: 2020-05-01-19-04-52
14+
.. nonce: Sti2lJ
15+
.. section: Core and Builtins
16+
17+
Fix imp module deprecation warning when PyImport_ReloadModule is called.
18+
Patch by Robert Rouhani.
19+
20+
..
21+
22+
.. bpo: 39562
23+
.. date: 2020-05-01-14-58-16
24+
.. nonce: KCsX8n
25+
.. section: Core and Builtins
26+
27+
The constant values of future flags in the :mod:`__future__` module are
28+
updated in order to prevent collision with compiler flags. Previously
29+
``PyCF_ALLOW_TOP_LEVEL_AWAIT`` was clashing with ``CO_FUTURE_DIVISION``.
30+
31+
..
32+
33+
.. bpo: 40559
34+
.. date: 2020-05-05-08-12-51
35+
.. nonce: 112wwa
36+
.. section: Library
37+
38+
Fix possible memory leak in the C implementation of :class:`asyncio.Task`.
39+
40+
..
41+
42+
.. bpo: 40355
43+
.. date: 2020-05-02-14-24-48
44+
.. nonce: xTujaB
45+
.. section: Library
46+
47+
Improve error reporting in :func:`ast.literal_eval` in the presence of
48+
malformed :class:`ast.Dict` nodes instead of silently ignoring any
49+
non-conforming elements. Patch by Curtis Bucher.
50+
51+
..
52+
53+
.. bpo: 40459
54+
.. date: 2020-05-02-04-29-31
55+
.. nonce: fSAYVD
56+
.. section: Library
57+
58+
:func:`platform.win32_ver` now produces correct *ptype* strings instead of
59+
empty strings.
60+
61+
..
62+
63+
.. bpo: 40398
64+
.. date: 2020-04-26-22-25-36
65+
.. nonce: OdXnR3
66+
.. section: Library
67+
68+
:func:`typing.get_args` now always returns an empty tuple for special
69+
generic aliases.
70+
71+
..
72+
73+
.. bpo: 40561
74+
.. date: 2020-05-08-08-39-40
75+
.. nonce: ZMB_2i
76+
.. section: Documentation
77+
78+
Provide docstrings for webbrowser open functions.
79+
80+
..
81+
82+
.. bpo: 39435
83+
.. date: 2020-01-24-05-42-57
84+
.. nonce: EFcdFU
85+
.. section: Documentation
86+
87+
Fix an incorrect signature for :func:`pickle.loads` in the docs
88+
89+
..
90+
91+
.. bpo: 40458
92+
.. date: 2020-05-01-20-57-57
93+
.. nonce: Eb0ueI
94+
.. section: Windows
95+
96+
Increase reserved stack space to prevent overflow crash on Windows.
97+
98+
..
99+
100+
.. bpo: 40412
101+
.. date: 2020-05-01-17-28-04
102+
.. nonce: dE0D8N
103+
.. section: C API
104+
105+
Nullify inittab_copy during finalization, preventing future interpreter
106+
initializations in an embedded situation from crashing. Patch by Gregory
107+
Szorc.

Misc/NEWS.d/next/C API/2020-05-01-17-28-04.bpo-40412.dE0D8N.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Core and Builtins/2020-05-01-14-58-16.bpo-39562.KCsX8n.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

Misc/NEWS.d/next/Core and Builtins/2020-05-01-19-04-52.bpo-40417.Sti2lJ.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Core and Builtins/2020-05-06-14-52-35.bpo-40527.gTNKuy.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Documentation/2020-01-24-05-42-57.bpo-39435.EFcdFU.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Documentation/2020-05-08-08-39-40.bpo-40561.ZMB_2i.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Library/2020-04-26-22-25-36.bpo-40398.OdXnR3.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2020-05-02-04-29-31.bpo-40459.fSAYVD.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Library/2020-05-02-14-24-48.bpo-40355.xTujaB.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2020-05-05-08-12-51.bpo-40559.112wwa.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Windows/2020-05-01-20-57-57.bpo-40458.Eb0ueI.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.8.3rc1
2-
===============================
1+
This is Python version 3.8.3
2+
============================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.8
55
:alt: CPython build status on Travis CI

0 commit comments

Comments
 (0)