Skip to content

Commit

Permalink
Python 3.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ambv committed Nov 15, 2021
1 parent 32d14b2 commit ccb0e6a
Show file tree
Hide file tree
Showing 13 changed files with 86 additions and 20 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,7 @@ Tools/ssl/win32
# Ignore ./python binary on Unix but still look into ./Python/ directory.
/python
!/Python/

# Artifacts generated by 3.11 lying around when switching branches:
/Programs/_freeze_module
/Python/frozen_modules/
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
/*--start constants--*/
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 9
#define PY_MICRO_VERSION 8
#define PY_MICRO_VERSION 9
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
#define PY_RELEASE_SERIAL 0

/* Version as a string */
#define PY_VERSION "3.9.8+"
#define PY_VERSION "3.9.9"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
2 changes: 1 addition & 1 deletion Lib/pydoc_data/topics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Fri Nov 5 20:19:23 2021
# Autogenerated by Sphinx on Mon Nov 15 18:21:10 2021
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
Expand Down
78 changes: 78 additions & 0 deletions Misc/NEWS.d/3.9.9.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
.. bpo: 45738
.. date: 2021-11-14-00-14-45
.. nonce: e0cgKd
.. release date: 2021-11-15
.. section: Core and Builtins
Fix computation of error location for invalid continuation characters in the
parser. Patch by Pablo Galindo.

..
.. bpo: 45235
.. date: 2021-11-11-13-03-17
.. nonce: 8ZbkHa
.. section: Library
Reverted an argparse bugfix that caused regression in the handling of
default arguments for subparsers. This prevented leaf level arguments from
taking precedence over root level arguments.

..
.. bpo: 45765
.. date: 2021-11-09-09-04-19
.. nonce: JVobxK
.. section: Library
In importlib.metadata, fix distribution discovery for an empty path.

..
.. bpo: 45644
.. date: 2021-11-06-17-47-46
.. nonce: ZMqHD_
.. section: Library
In-place JSON file formatting using ``python3 -m json.tool infile infile``
now works correctly, previously it left the file empty. Patch by Chris
Wesseling.

..
.. bpo: 45772
.. date: 2021-11-09-13-10-55
.. nonce: EdrM3t
.. section: Documentation
``socket.socket`` documentation is corrected to a class from a function.

..
.. bpo: 45392
.. date: 2021-11-06-10-54-17
.. nonce: JZnVOz
.. section: Documentation
Update the docstring of the :class:`type` built-in to remove a redundant
line and to mention keyword arguments for the constructor.

..
.. bpo: 45732
.. date: 2021-11-08-21-53-11
.. nonce: idl5kx
.. section: Windows
Updates bundled Tcl/Tk to 8.6.12.

..
.. bpo: 45720
.. date: 2021-11-05-01-05-46
.. nonce: 47Nc5I
.. section: Windows
Internal reference to :file:`shlwapi.dll` was dropped to help improve
startup time. This DLL will no longer be loaded at the start of every Python
process.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This is Python version 3.9.8
This is Python version 3.9.9
============================

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

0 comments on commit ccb0e6a

Please sign in to comment.