mirror of
https://github.com/python/cpython.git
synced 2025-10-04 22:20:46 +00:00
Python 3.9.4
This commit is contained in:
parent
c7b0feca25
commit
1f2e3088f3
6 changed files with 25 additions and 9 deletions
|
@ -18,12 +18,12 @@
|
||||||
/*--start constants--*/
|
/*--start constants--*/
|
||||||
#define PY_MAJOR_VERSION 3
|
#define PY_MAJOR_VERSION 3
|
||||||
#define PY_MINOR_VERSION 9
|
#define PY_MINOR_VERSION 9
|
||||||
#define PY_MICRO_VERSION 3
|
#define PY_MICRO_VERSION 4
|
||||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
|
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
|
||||||
#define PY_RELEASE_SERIAL 0
|
#define PY_RELEASE_SERIAL 0
|
||||||
|
|
||||||
/* Version as a string */
|
/* Version as a string */
|
||||||
#define PY_VERSION "3.9.3+"
|
#define PY_VERSION "3.9.4"
|
||||||
/*--end constants--*/
|
/*--end constants--*/
|
||||||
|
|
||||||
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
|
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Autogenerated by Sphinx on Fri Apr 2 11:48:03 2021
|
# Autogenerated by Sphinx on Sun Apr 4 14:53:49 2021
|
||||||
topics = {'assert': 'The "assert" statement\n'
|
topics = {'assert': 'The "assert" statement\n'
|
||||||
'**********************\n'
|
'**********************\n'
|
||||||
'\n'
|
'\n'
|
||||||
|
|
21
Misc/NEWS.d/3.9.4.rst
Normal file
21
Misc/NEWS.d/3.9.4.rst
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
.. bpo: 43710
|
||||||
|
.. date: 2021-04-03-21-12-15
|
||||||
|
.. nonce: _Mj01v
|
||||||
|
.. release date: 2021-04-04
|
||||||
|
.. section: Core and Builtins
|
||||||
|
|
||||||
|
Reverted the fix for https://bugs.python.org/issue42500 as it changed the
|
||||||
|
PyThreadState struct size and broke the 3.9.x ABI in the 3.9.3 release
|
||||||
|
(visible on 32-bit platforms using binaries compiled using an earlier
|
||||||
|
version of Python 3.9.x headers).
|
||||||
|
|
||||||
|
..
|
||||||
|
|
||||||
|
.. bpo: 26053
|
||||||
|
.. date: 2020-09-01-10-12-13
|
||||||
|
.. nonce: hXikw_
|
||||||
|
.. section: Library
|
||||||
|
|
||||||
|
Fixed bug where the :mod:`pdb` interactive run command echoed the args from
|
||||||
|
the shell command line, even if those have been overridden at the pdb
|
||||||
|
prompt.
|
|
@ -1,4 +0,0 @@
|
||||||
Reverted the fix for https://bugs.python.org/issue42500 as it changed the
|
|
||||||
PyThreadState struct size and broke the 3.9.x ABI in the 3.9.3 release
|
|
||||||
(visible on 32-bit platforms using binaries compiled using an earlier
|
|
||||||
version of Python 3.9.x headers).
|
|
|
@ -1 +0,0 @@
|
||||||
Fixed bug where the :mod:`pdb` interactive run command echoed the args from the shell command line, even if those have been overridden at the pdb prompt.
|
|
|
@ -1,4 +1,4 @@
|
||||||
This is Python version 3.9.3
|
This is Python version 3.9.4
|
||||||
============================
|
============================
|
||||||
|
|
||||||
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.9
|
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.9
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue