]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
20 months ago[3.12] gh-115285: Fix `test_dataclasses` with `-OO` mode (GH-115286) (#115359)
Miss Islington (bot) [Mon, 12 Feb 2024 20:27:48 +0000 (21:27 +0100)] 
[3.12] gh-115285: Fix `test_dataclasses` with `-OO` mode (GH-115286) (#115359)

gh-115285: Fix `test_dataclasses` with `-OO` mode (GH-115286)
(cherry picked from commit 4297d7301b97aba2e0df9f9cc5fa4010e53a8950)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] Remove stray backtick in NEWS entry (GH-115356) (#115364)
Miss Islington (bot) [Mon, 12 Feb 2024 19:30:30 +0000 (20:30 +0100)] 
[3.12] Remove stray backtick in NEWS entry (GH-115356) (#115364)

Remove stray backtick in NEWS entry (GH-115356)
(cherry picked from commit a82fbc13d0e352b9af7d7ffbef4bc04cf635f07f)

Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
20 months ago[3.12] gh-115233: Fix an example in the Logging Cookbook (GH-115325) (GH-115355)
Serhiy Storchaka [Mon, 12 Feb 2024 18:29:48 +0000 (20:29 +0200)] 
[3.12] gh-115233: Fix an example in the Logging Cookbook (GH-115325) (GH-115355)

Also add more tests for LoggerAdapter.

Also support stacklevel in LoggerAdapter._log().
(cherry picked from commit 91822018eeba12a6c9eabbc748363b2fd4291b30)

20 months agogh-115049: Fix py.exe failing when user has no LocalAppData. (GH-115185)
Miss Islington (bot) [Mon, 12 Feb 2024 18:18:45 +0000 (19:18 +0100)] 
gh-115049: Fix py.exe failing when user has no LocalAppData. (GH-115185)

Also ensure we always display a debug message or error for RC_INTERNAL_ERROR
(cherry picked from commit c39272e143b346bd6a3c04ca4fbf299163888277)

Co-authored-by: Steve Dower <steve.dower@python.org>
20 months ago[3.12] gh-101100: Fix Sphinx warnings in `whatsnew/2.7.rst` and related (GH-115319...
Hugo van Kemenade [Mon, 12 Feb 2024 14:37:20 +0000 (16:37 +0200)] 
[3.12] gh-101100: Fix Sphinx warnings in `whatsnew/2.7.rst` and related (GH-115319) (#115330)

20 months ago[3.12] Add missing sections to blurbs (GH-114553) (#115336)
Miss Islington (bot) [Mon, 12 Feb 2024 14:22:48 +0000 (15:22 +0100)] 
[3.12] Add missing sections to blurbs (GH-114553) (#115336)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
20 months ago[3.12] gh-101100: Clean up Doc/c-api/exceptions.rst and Doc/c-api/sys.rst (GH-114825...
Miss Islington (bot) [Sun, 11 Feb 2024 19:02:21 +0000 (20:02 +0100)] 
[3.12] gh-101100: Clean up Doc/c-api/exceptions.rst and Doc/c-api/sys.rst (GH-114825) (GH-115308)

(cherry picked from commit e1552fd19de17e7a6daa3c2a6d1ca207bb8eaf8e)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
20 months ago[3.12] gh-101100: Fix dangling refs in bdb.rst (#114983) (#115297)
Skip Montanaro [Sun, 11 Feb 2024 18:32:37 +0000 (12:32 -0600)] 
[3.12] gh-101100: Fix dangling refs in bdb.rst (#114983) (#115297)

Co-authored-by: AN Long <aisk@users.noreply.github.com>
Fix dangling refs in bdb.rst (#114983)

20 months ago[3.12] gh-97959: Fix rendering of routines in pydoc (GH-113941) (GH-115296)
Serhiy Storchaka [Sun, 11 Feb 2024 13:56:34 +0000 (15:56 +0200)] 
[3.12] gh-97959: Fix rendering of routines in pydoc (GH-113941) (GH-115296)

* Class methods no longer have "method of builtins.type instance" note.
* Corresponding notes are now added for class and unbound methods.
* Method and function aliases now have references to the module or the
  class where the origin was defined if it differs from the current.
* Bound methods are now listed in the static methods section.
* Methods of builtin classes are now supported as well as methods of
  Python classes.
(cherry picked from commit 2939ad02be62110ffa2ac6c4d9211c85e1d1720f)

20 months ago[3.12] gh-115011: Improve support of __index__() in setters of members with unsigned...
Serhiy Storchaka [Sun, 11 Feb 2024 11:56:17 +0000 (13:56 +0200)] 
[3.12] gh-115011: Improve support of __index__() in setters of members with unsigned integer type (GH-115029) (GH-115294)

Setters for members with an unsigned integer type now support
the same range of valid values for objects that has a __index__()
method as for int.

Previously, Py_T_UINT, Py_T_ULONG and Py_T_ULLONG did not support
objects that has a __index__() method larger than LONG_MAX.

Py_T_ULLONG did not support negative ints. Now it supports them and
emits a RuntimeWarning.
(cherry picked from commit d9d6909697501a2604d5895f9f88aeec61274ab0)

20 months ago[3.12] gh-79382: Fix recursive glob() with trailing "**" (GH-115134) (GH-115290)
Miss Islington (bot) [Sun, 11 Feb 2024 10:57:40 +0000 (11:57 +0100)] 
[3.12] gh-79382: Fix recursive glob() with trailing "**" (GH-115134) (GH-115290)

Trailing "**" no longer allows to match files and non-existing paths in
recursive glob().
(cherry picked from commit aeffc7f8951e04258f0fd8cadfa6cd8b704730f6)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
20 months ago[3.12] gh-115172: Fix explicit index extries for the C API (GH-115173) (GH-115292)
Serhiy Storchaka [Sun, 11 Feb 2024 10:34:41 +0000 (12:34 +0200)] 
[3.12] gh-115172: Fix explicit index extries for the C API (GH-115173) (GH-115292)

(cherry picked from commit 573acb30f22a84c0f2c951efa002c9946e29b6a3)

20 months ago[3.12] gh-115133: Fix tests for XMLPullParser with Expat 2.6.0 (GH-115164) (GH-115288)
Miss Islington (bot) [Sun, 11 Feb 2024 10:34:04 +0000 (11:34 +0100)] 
[3.12] gh-115133: Fix tests for XMLPullParser with Expat 2.6.0 (GH-115164) (GH-115288)

Feeding the parser by too small chunks defers parsing to prevent
CVE-2023-52425. Future versions of Expat may be more reactive.
(cherry picked from commit 4a08e7b3431cd32a0daf22a33421cd3035343dc4)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
20 months ago[3.12] gh-115274: Fix direct invocation of `testmock/testpatch.py` (GH-115275) (...
Miss Islington (bot) [Sun, 11 Feb 2024 09:14:37 +0000 (10:14 +0100)] 
[3.12] gh-115274: Fix direct invocation of `testmock/testpatch.py` (GH-115275) (#115280)

gh-115274: Fix direct invocation of `testmock/testpatch.py` (GH-115275)
(cherry picked from commit f8e9c57067e32baab4ed2fd824b892c52ecb7225)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] gh-115249: Fix `test_descr` with `-OO` mode (GH-115250) (#115277)
Miss Islington (bot) [Sun, 11 Feb 2024 08:57:49 +0000 (09:57 +0100)] 
[3.12] gh-115249: Fix `test_descr` with `-OO` mode (GH-115250) (#115277)

gh-115249: Fix `test_descr` with `-OO` mode (GH-115250)
(cherry picked from commit 1f23837277e604f41589273aeb3a10377d416510)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] gh-115254: Fix `test_property` with `-00` mode (GH-115255) (#115261)
Miss Islington (bot) [Sun, 11 Feb 2024 07:59:37 +0000 (08:59 +0100)] 
[3.12] gh-115254: Fix `test_property` with `-00` mode (GH-115255) (#115261)

gh-115254: Fix `test_property` with `-00` mode (GH-115255)
(cherry picked from commit b70a68fbd6b72a25b5ef430603e39c9e40f40d29)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] gh-114670: Fix `_testbuffer` module initialization (GH-114672) (#115272)
Miss Islington (bot) [Sun, 11 Feb 2024 07:53:00 +0000 (08:53 +0100)] 
[3.12] gh-114670: Fix `_testbuffer` module initialization (GH-114672) (#115272)

(cherry picked from commit 3a5b38e3b465e00f133ff8074a2d4afb1392dfb5)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] gh-115252: Fix `test_enum` with `-OO` mode (GH-115253) (GH-115260)
Miss Islington (bot) [Sun, 11 Feb 2024 05:15:40 +0000 (06:15 +0100)] 
[3.12] gh-115252: Fix `test_enum` with `-OO` mode (GH-115253) (GH-115260)

(cherry picked from commit 33f56b743285f8419e92cfabe673fa165165a580)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] gh-115059: Remove debugging code in test_io (GH-115240) (GH-115244)
Miss Islington (bot) [Sat, 10 Feb 2024 14:04:49 +0000 (15:04 +0100)] 
[3.12] gh-115059: Remove debugging code in test_io (GH-115240) (GH-115244)

(cherry picked from commit 597fad07f7bf709ac7084ac20aa3647995759b01)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
20 months ago[3.12] gh-114552: Update `__dir__` method docs: it allows returning an iterable ...
Miss Islington (bot) [Sat, 10 Feb 2024 08:50:31 +0000 (09:50 +0100)] 
[3.12] gh-114552: Update `__dir__` method docs: it allows returning an iterable (GH-114662) (#115234)

gh-114552: Update `__dir__` method docs: it allows returning an iterable (GH-114662)
(cherry picked from commit e19103a346f0277c44a43dfaebad9a5aa468bf1e)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
20 months ago[3.12] gh-115165: Fix `typing.Annotated` for immutable types (GH-115213) (#115227)
Miss Islington (bot) [Fri, 9 Feb 2024 22:31:57 +0000 (23:31 +0100)] 
[3.12] gh-115165: Fix `typing.Annotated` for immutable types (GH-115213) (#115227)

gh-115165: Fix `typing.Annotated` for immutable types (GH-115213)

The return value from an annotated callable can raise any exception from
__setattr__ for the `__orig_class__` property.
(cherry picked from commit 564385612cdf72c2fa8e629a68225fb2cd3b3d99)

Co-authored-by: dave-shawley <daveshawley@gmail.com>
20 months ago[3.12] gh-101100: Fix sphinx warnings in `library/enum.rst` (GH-114696) (GH-115208)
Nikita Sobolev [Fri, 9 Feb 2024 20:10:26 +0000 (23:10 +0300)] 
[3.12] gh-101100: Fix sphinx warnings in `library/enum.rst` (GH-114696) (GH-115208)

20 months ago[3.12] Docs: correctly link to code objects (GH-115214) (#115216)
Miss Islington (bot) [Fri, 9 Feb 2024 14:17:49 +0000 (15:17 +0100)] 
[3.12] Docs: correctly link to code objects (GH-115214) (#115216)

(cherry picked from commit 769d4448260aaec687d9306950225316f9faefce)

Co-authored-by: Erlend E. Aasland <erlend@python.org>
20 months ago[3.12] gh-115059: Flush the underlying write buffer in io.BufferedRandom.read1()...
Miss Islington (bot) [Fri, 9 Feb 2024 11:00:35 +0000 (12:00 +0100)] 
[3.12] gh-115059: Flush the underlying write buffer in io.BufferedRandom.read1() (GH-115163) (GH-115205)

(cherry picked from commit 846fd721d518dda88a7d427ec3d2c03c45d9fa90)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months agogh-115167: Exclude vcruntime140_threads.dll from Windows build output (GH-115176)
Miss Islington (bot) [Thu, 8 Feb 2024 22:15:58 +0000 (23:15 +0100)] 
gh-115167: Exclude vcruntime140_threads.dll from Windows build output (GH-115176)

(cherry picked from commit 5914a211ef5542edd1f792c2684e373a42647b04)

Co-authored-by: adang1345 <adang1345@gmail.com>
21 months ago[3.12] gh-115106 docs: 'enum.Flag.__iter__()' did not exist prior to Python 3.11...
Miss Islington (bot) [Thu, 8 Feb 2024 22:03:12 +0000 (23:03 +0100)] 
[3.12] gh-115106 docs: 'enum.Flag.__iter__()' did not exist prior to Python 3.11 (GH-115107) (GH-115117)

change versionchanged to versionadded
(cherry picked from commit 3f71c416c085cfaed49ef325f70eb374a4966256)

Co-authored-by: Finite State Machine <38001514+finite-state-machine@users.noreply.github.com>
21 months ago[3.12] gh-114071: [Enum] update docs and code for tuples/subclasses (GH-114871) ...
Miss Islington (bot) [Thu, 8 Feb 2024 22:01:38 +0000 (23:01 +0100)] 
[3.12] gh-114071: [Enum] update docs and code for tuples/subclasses (GH-114871) (GH-114993)

Update documentation with `__new__` and `__init__` entries.

Support use of `auto()` in tuple subclasses on member assignment lines.  Previously, auto() was only supported on the member definition line either solo or as part of a tuple:

    RED = auto()
    BLUE = auto(), 'azul'

However, since Python itself supports using tuple subclasses where tuples are expected, e.g.:

    from collections import namedtuple
    T = namedtuple('T', 'first second third')

    def test(one, two, three):
        print(one, two, three)

    test(*T(4, 5, 6))
    GH- 4 5 6

it made sense to also support tuple subclasses in enum definitions.
(cherry picked from commit ff7588b729a2a414ea189a2012904da3fbd1401c)

Co-authored-by: Ethan Furman <ethan@stoneleaf.us>
21 months ago[3.12] gh-115136: Fix possible NULL deref in getpath_joinpath() (GH-115137) (GH-115157)
Miss Islington (bot) [Thu, 8 Feb 2024 09:18:38 +0000 (10:18 +0100)] 
[3.12] gh-115136: Fix possible NULL deref in getpath_joinpath() (GH-115137) (GH-115157)

(cherry picked from commit 9e90313320a2af2d9ff7049ed3842344ed236630)

Signed-off-by: Artem Chernyshev <artem.chernyshev@red-soft.ru>
Co-authored-by: Artem Chernyshev <62871052+dTenebrae@users.noreply.github.com>
21 months ago[3.12] gh-115146: Fix typo in pickletools.py documentation (GH-115148) (GH-115155)
Miss Islington (bot) [Thu, 8 Feb 2024 08:30:31 +0000 (09:30 +0100)] 
[3.12] gh-115146: Fix typo in pickletools.py documentation (GH-115148) (GH-115155)

(cherry picked from commit 4a7f63869aa61b24a7cc2d33f8a5e5a7fd0d76a4)

Co-authored-by: Justin Applegate <70449145+Legoclones@users.noreply.github.com>
21 months ago[3.12] gh-114828: parenthesize non-atomic macro definitions in pycore_symtable.h...
Miss Islington (bot) [Wed, 7 Feb 2024 20:39:22 +0000 (21:39 +0100)] 
[3.12] gh-114828: parenthesize non-atomic macro definitions in pycore_symtable.h (GH-115143) (#115149)

gh-114828: parenthesize non-atomic macro definitions in pycore_symtable.h (GH-115143)
(cherry picked from commit 8f0998e844c2fd8c0c94681d0a6331c34ee31562)

Co-authored-by: Carl Meyer <carl@oddbird.net>
21 months ago[3.12] gh-114828: Fix __class__ in class-scope inlined comprehensions (GH-115139...
Miss Islington (bot) [Wed, 7 Feb 2024 17:12:54 +0000 (18:12 +0100)] 
[3.12] gh-114828: Fix __class__ in class-scope inlined comprehensions (GH-115139) (#115140)

gh-114828: Fix __class__ in class-scope inlined comprehensions (GH-115139)
(cherry picked from commit fedbf77191ea9d6515b39f958cc9e588d23517c9)

Co-authored-by: Carl Meyer <carl@oddbird.net>
21 months ago[3.12] gh-101100: Fix Py_DEBUG dangling Sphinx references (GH-115003) (#115135)
Miss Islington (bot) [Wed, 7 Feb 2024 10:55:21 +0000 (11:55 +0100)] 
[3.12] gh-101100: Fix Py_DEBUG dangling Sphinx references (GH-115003) (#115135)

gh-101100: Fix Py_DEBUG dangling Sphinx references (GH-115003)
(cherry picked from commit d0322fdf2c1a7292a43959fe5a572d783b88a1c4)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
21 months ago[3.12] gh-103224: Resolve paths properly in test_sysconfig (GH-103292) (GH-115100)
Miss Islington (bot) [Wed, 7 Feb 2024 09:36:10 +0000 (10:36 +0100)] 
[3.12] gh-103224: Resolve paths properly in test_sysconfig (GH-103292) (GH-115100)

To pass tests when executed through a Python symlink.

(cherry picked from commit 71239d50b54c90afd3fdde260848e0c6d73a5c27)

Co-authored-by: Artem Mukhin <artem.m.mukhin@gmail.com>
Co-authored-by: Miro Hrončok <miro@hroncok.cz>
21 months agoMerge branch '3.12' of https://github.com/python/cpython into 3.12
Thomas Wouters [Tue, 6 Feb 2024 23:44:54 +0000 (00:44 +0100)] 
Merge branch '3.12' of https://github.com/python/cpython into 3.12

21 months agoPost 3.12.2
Thomas Wouters [Tue, 6 Feb 2024 23:44:32 +0000 (00:44 +0100)] 
Post 3.12.2

21 months ago[3.12] gh-115009: Update Windows installer to use SQLite 3.45.1 (#115065) (#115110)
Erlend E. Aasland [Tue, 6 Feb 2024 23:02:58 +0000 (00:02 +0100)] 
[3.12] gh-115009: Update Windows installer to use SQLite 3.45.1 (#115065) (#115110)

(cherry picked from commit 11ac6f5354ec7a4da2a7e052d27d636b5a41c714)

21 months agoPython 3.12.2 v3.12.2
Thomas Wouters [Tue, 6 Feb 2024 20:16:03 +0000 (21:16 +0100)] 
Python 3.12.2

21 months ago[3.12] GH-gh-75705: Set unixfrom envelope in mailbox._mboxMMDF (GH-107117) (GH-115098)
Miss Islington (bot) [Tue, 6 Feb 2024 19:05:05 +0000 (20:05 +0100)] 
[3.12] GH-gh-75705: Set unixfrom envelope in mailbox._mboxMMDF (GH-107117) (GH-115098)

(cherry picked from commit 76108b8b05040fc49a6bc50eb2e990576595c57c)

Co-authored-by: Matthieu Caneill <matthieucan@users.noreply.github.com>
21 months ago[3.12] gh-112302: Change 'licenseConcluded' field to 'NOASSERTION' (GH-115038) (...
Miss Islington (bot) [Tue, 6 Feb 2024 18:34:03 +0000 (19:34 +0100)] 
[3.12] gh-112302: Change 'licenseConcluded' field to 'NOASSERTION' (GH-115038) (#115088)

* gh-112302: Change 'licenseConcluded' field to 'NOASSERTION' (GH-115038)
(cherry picked from commit 4bf41879d03b1da3c6d38c39a04331e3ae2e7545)

Co-authored-by: Seth Michael Larson <seth@python.org>
* Update pip SBOM package to version in source

---------

Co-authored-by: Seth Michael Larson <seth@python.org>
21 months ago[3.12] gh-46968: Fix invalid reference to Sound eXchange (SoX) 12.17.7 license (...
Łukasz Langa [Tue, 6 Feb 2024 17:59:23 +0000 (18:59 +0100)] 
[3.12] gh-46968: Fix invalid reference to Sound eXchange (SoX) 12.17.7 license (#115094)

Fix invalid reference to Sound eXchange (SoX) 12.17.7 license

21 months ago[3.12] gh-112302: Backport SBOM generation tooling (#114730)
Seth Michael Larson [Tue, 6 Feb 2024 15:02:28 +0000 (09:02 -0600)] 
[3.12] gh-112302: Backport SBOM generation tooling (#114730)

[3.12] Backport SBOM generation tooling

21 months ago[3.12] gh-111239: Update Windows build to use zlib 1.3.1 (GH-114877) (GH-115076)
Miss Islington (bot) [Tue, 6 Feb 2024 14:53:30 +0000 (15:53 +0100)] 
[3.12] gh-111239: Update Windows build to use zlib 1.3.1 (GH-114877) (GH-115076)

gh-111239: Update Windows build to use zlib 1.3.1 (GH-114877)
(cherry picked from commit 618d7256e78da8200f6e2c6235094a1ef885dca4)

Co-authored-by: Zachary Ware <zach@python.org>
21 months ago[3.12] gh-106233: Fix stacklevel in zoneinfo.InvalidTZPathWarning (GH-106234) (GH...
Miss Islington (bot) [Tue, 6 Feb 2024 13:26:39 +0000 (14:26 +0100)] 
[3.12] gh-106233: Fix stacklevel in zoneinfo.InvalidTZPathWarning (GH-106234) (GH-115081)

(cherry picked from commit d7334e2c2012defaf7aae920d6a56689464509d1)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
21 months ago[3.12] gh-115009: Update macOS installer to use SQLite 3.45.1 (#115066) (#115071)
Erlend E. Aasland [Tue, 6 Feb 2024 10:21:53 +0000 (11:21 +0100)] 
[3.12] gh-115009: Update macOS installer to use SQLite 3.45.1 (#115066) (#115071)

(cherry picked from commit 13eb5215c9de9dd302f116ef0bca4ae23b02842b)

Co-authored-by: Ned Deily <nad@python.org>
21 months ago[3.12] gh-115015: Argument Clinic: fix generated code for METH_METHOD methods without...
Erlend E. Aasland [Tue, 6 Feb 2024 10:20:16 +0000 (11:20 +0100)] 
[3.12] gh-115015: Argument Clinic: fix generated code for METH_METHOD methods without params (#115016) (#115067)

(cherry picked from commit 09096a1647913526a3d4fa69a9d2056ec82a8f37)

21 months ago[3.12] gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.13. (GH-115055)
Miss Islington (bot) [Tue, 6 Feb 2024 02:29:17 +0000 (03:29 +0100)] 
[3.12] gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.13. (GH-115055)

Also update multissltests to use 1.1.1w, 3.0.13, 3.1.5, and 3.2.1.
(cherry picked from commit 299e16ca0f303a1e00bd0e04679862a5d4db5ab2)

Co-authored-by: Ned Deily <nad@python.org>
21 months ago[3.12] gh-109991: Update macOS installer to use OpenSSL 3.0.13. (GH-115053)
Miss Islington (bot) [Tue, 6 Feb 2024 02:16:32 +0000 (03:16 +0100)] 
[3.12] gh-109991: Update macOS installer to use OpenSSL 3.0.13. (GH-115053)

(cherry picked from commit 638e811a3c54a81d8af5a4c08b9497d210823f78)

Co-authored-by: Ned Deily <nad@python.org>
21 months ago[3.12] gh-109991: Update Windows build to use OpenSSL 3.0.13 (#115047)
Zachary Ware [Tue, 6 Feb 2024 00:11:15 +0000 (18:11 -0600)] 
[3.12] gh-109991: Update Windows build to use OpenSSL 3.0.13 (#115047)

(cherry picked from commit 01dceba13e872e9ca24b8e00a2b75db3d0d6c1a3)

21 months ago[3.12] gh-109475: Fix support of explicit option value "--" in argparse (GH-114814...
Miss Islington (bot) [Mon, 5 Feb 2024 21:02:00 +0000 (22:02 +0100)] 
[3.12] gh-109475: Fix support of explicit option value "--" in argparse (GH-114814) (GH-115036)

For example "--option=--".
(cherry picked from commit 4aa4f0906df9fc9c6c6f6657f2c521468c6b1688)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-114967: Fix "Built-in Exceptions" documentation ambiguous wording (GH-11496...
Miss Islington (bot) [Mon, 5 Feb 2024 20:30:38 +0000 (21:30 +0100)] 
[3.12] gh-114967: Fix "Built-in Exceptions" documentation ambiguous wording (GH-114968) (#115033)

Change the somewhat vague "listed below" to "listed in this chapter" in Doc/library/exceptions.rst.
The exceptions are listed in multiple sections after two intermediate sections.
---------

(cherry picked from commit 750489cc774df44daa2c0d23e8a404fe62be93d1)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: HarryLHW <123lhw321@gmail.com>
21 months ago[3.12] GH-69695: Update ``PyImport_ImportModule`` description (GH-103836) GH-114925)
Miss Islington (bot) [Mon, 5 Feb 2024 09:53:57 +0000 (10:53 +0100)] 
[3.12] GH-69695: Update ``PyImport_ImportModule`` description (GH-103836) GH-114925)

GH-69695: Update ``PyImport_ImportModule`` description (GH-103836)

(cherry picked from commit 9872855a31720f514b84373848b49fca09d66ecd)

Co-authored-by: patenaud <33957588+patenaud@users.noreply.github.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
21 months ago[3.12] Remove bogus syntax error marker in csv doc (GH-115017) (#115018)
Miss Islington (bot) [Mon, 5 Feb 2024 04:17:58 +0000 (05:17 +0100)] 
[3.12] Remove bogus syntax error marker in csv doc (GH-115017) (#115018)

(cherry picked from commit 39ec7fbba84663ab760853da2ac422c2e988d189)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
21 months ago[3.12] gh-114887 Reject only sockets of type SOCK_STREAM in create_da… (#114980)
Travis Howse [Sun, 4 Feb 2024 23:42:06 +0000 (09:42 +1000)] 
[3.12] gh-114887 Reject only sockets of type SOCK_STREAM in create_da… (#114980)

Also improve exception message.

(cherry picked from commit 94ec2b9c9ce898723c3fe61fbc64d6c8f4f68700)

Co-authored-by: Donghee Na <donghee.na92@gmail.com>
21 months ago[3.12] gh-114480: Add docs for f_trace_opcodes behavior on 3.12 (#114540)
Tian Gao [Sun, 4 Feb 2024 22:27:17 +0000 (14:27 -0800)] 
[3.12] gh-114480: Add docs for f_trace_opcodes behavior on 3.12 (#114540)

21 months ago[3.12] gh-114392: Improve test_capi.test_structmembers (GH-114393) (GH-115010)
Miss Islington (bot) [Sun, 4 Feb 2024 20:41:25 +0000 (21:41 +0100)] 
[3.12] gh-114392: Improve test_capi.test_structmembers (GH-114393) (GH-115010)

Test all integer member types with extreme values and values outside of
the valid range. Test support of integer-like objects. Test warnings for
wrapped out values.
(cherry picked from commit 15f6f048a6ecdf0f6f4fc076d013be3d110f8ed6)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-113803: Fix inaccurate documentation for shutil.move when dst is an existin...
Miss Islington (bot) [Sun, 4 Feb 2024 19:00:03 +0000 (20:00 +0100)] 
[3.12] gh-113803: Fix inaccurate documentation for shutil.move when dst is an existing directory (GH-113837) (#115006)

* fix the usage of dst and destination in shutil.move doc
* update shutil.move doc
(cherry picked from commit da8f9fb2ea65cc2784c2400fc39ad8c800a67a42)

Co-authored-by: Dai Wentao <dwt136@gmail.com>
21 months ago[3.12] gh-114388: Fix warnings when assign an unsigned integer member (GH-114391...
Serhiy Storchaka [Sun, 4 Feb 2024 17:21:05 +0000 (19:21 +0200)] 
[3.12] gh-114388: Fix warnings when assign an unsigned integer member (GH-114391) (GH-115001)

* Fix a RuntimeWarning emitted when assign an integer-like value that
  is not an instance of int to an attribute that corresponds to a C
  struct member of type T_UINT and T_ULONG.
* Fix a double RuntimeWarning emitted when assign a negative integer value
  to an attribute that corresponds to a C struct member of type T_UINT.
(cherry picked from commit 3ddc5152550ea62280124c37d0b4339030ff7df4)

21 months ago[3.12] gh-113951: Tkinter: "tag_unbind(tag, sequence, funcid)" now only unbinds ...
Miss Islington (bot) [Sun, 4 Feb 2024 16:43:56 +0000 (17:43 +0100)] 
[3.12] gh-113951: Tkinter: "tag_unbind(tag, sequence, funcid)" now only unbinds "funcid" (GH-113955) (GH-114997)

Previously, "tag_unbind(tag, sequence, funcid)" methods of Text and
Canvas widgets destroyed the current binding for "sequence", leaving
"sequence" unbound, and deleted the "funcid" command.

Now they remove only "funcid" from the binding for "sequence", keeping
other commands, and delete the "funcid" command.
They leave "sequence" unbound only if "funcid" was the last bound command.
(cherry picked from commit 7e42fddf608337e83b30401910d76fd75d5cf20a)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-113280: Always close socket if SSLSocket creation failed (GH-114659) (GH...
Miss Islington (bot) [Sun, 4 Feb 2024 16:12:19 +0000 (17:12 +0100)] 
[3.12] gh-113280: Always close socket if SSLSocket creation failed (GH-114659) (GH-114995)

(cherry picked from commit 0ea366240b75380ed7568acbe95d72e481a734f7)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
21 months ago[3.12] gh-101100: Fix dangling references in pickle.rst (#114972) (#114999)
Skip Montanaro [Sun, 4 Feb 2024 16:03:21 +0000 (10:03 -0600)] 
[3.12] gh-101100: Fix dangling references in pickle.rst (#114972) (#114999)

gh-101100: Fix dangling references in pickle.rst (#114972)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
(cherry picked from commit ec69e1d0ddc9906e0fb755a5234aeabdc96450ab)

21 months ago[3.12] gh-113267: Revert "gh-106584: Fix exit code for unittest in Python 3.12 (GH...
Miss Islington (bot) [Sun, 4 Feb 2024 16:00:56 +0000 (17:00 +0100)] 
[3.12] gh-113267: Revert "gh-106584: Fix exit code for unittest in Python 3.12 (GH-106588)" (GH-114470) (GH-114994)

This reverts commit 8fc071345b50dd3de61ebeeaa287ccef21d061b2.
(cherry picked from commit ecabff98c41453f15ecd26ac255d531b571b9bc1)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-101100: Fix Sphinx warnings from PEP 3108 stdlib re-organisation (GH-114327...
Hugo van Kemenade [Sun, 4 Feb 2024 11:53:45 +0000 (13:53 +0200)] 
[3.12] gh-101100: Fix Sphinx warnings from PEP 3108 stdlib re-organisation (GH-114327) (#114988)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Fix Sphinx warnings from PEP 3108 stdlib re-organisation (#114327)

21 months ago[3.12] gh-101100: Fix sphinx warnings in `c-api/file.rst` (GH-114546) (#114584)
Miss Islington (bot) [Sun, 4 Feb 2024 08:57:19 +0000 (09:57 +0100)] 
[3.12] gh-101100: Fix sphinx warnings in `c-api/file.rst` (GH-114546) (#114584)

* gh-101100: Fix sphinx warnings in `c-api/file.rst` (GH-114546)
(cherry picked from commit 01d970c1b8acf3ccf199d5de151a635ffd9d8c61)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
21 months ago[3.12] gh-114965: Updated bundled pip to 24.0 (gh-114966) (gh-114971)
Stéphane Bidoul [Sat, 3 Feb 2024 19:37:13 +0000 (20:37 +0100)] 
[3.12] gh-114965: Updated bundled pip to 24.0 (gh-114966) (gh-114971)

gh-114965: Updated bundled pip to 24.0 (gh-114966)

Updated bundled pip to 24.0

(cherry picked from commit a4c298c1494b602a9650b597aad50b48e3fa1f41)

21 months ago[3.12] gh-101100: Fix Sphinx reference warnings in the glossary (GH-114729) (#114969)
Miss Islington (bot) [Sat, 3 Feb 2024 18:51:43 +0000 (19:51 +0100)] 
[3.12] gh-101100: Fix Sphinx reference warnings in the glossary (GH-114729) (#114969)

gh-101100: Fix Sphinx reference warnings in the glossary (GH-114729)
(cherry picked from commit ab76d37948fd506af44762dc1c3e32f27d1327a8)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
21 months ago[3.12] gh-114959: tarfile: do not ignore errors when extract a directory on top of...
Miss Islington (bot) [Sat, 3 Feb 2024 16:39:01 +0000 (17:39 +0100)] 
[3.12] gh-114959: tarfile: do not ignore errors when extract a directory on top of a file (GH-114960) (GH-114963)

Also, add tests common to tarfile and zipfile.
(cherry picked from commit 96bce033c4a4da7112792ba335ef3eb9a3eb0da0)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-114955: Add clear to MutableSequence's mixin methods in document (gh-114956...
Miss Islington (bot) [Sat, 3 Feb 2024 15:41:04 +0000 (16:41 +0100)] 
[3.12] gh-114955: Add clear to MutableSequence's mixin methods in document (gh-114956) (gh-114961)

21 months ago[3.12] Update LOGGING example taken from Django docs. (GH-114903) (#114951)
Miss Islington (bot) [Sat, 3 Feb 2024 15:23:33 +0000 (16:23 +0100)] 
[3.12] Update LOGGING example taken from Django docs. (GH-114903) (#114951)

Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
21 months ago[3.12] Normalize heading underline in multiprocessing.rst (GH-114923) (#114946)
Miss Islington (bot) [Sat, 3 Feb 2024 02:02:26 +0000 (03:02 +0100)] 
[3.12] Normalize heading underline in multiprocessing.rst (GH-114923) (#114946)

This gets rid of the mildly confusing `>>>>>>>' underlines which look vaguely like `diff` punctuation.
(cherry picked from commit 00d7109075dfaadf438362c084e8a1890c53d4c8)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
21 months ago[3.12] gh-114913: Add newline to subprocess doc (GH-114941) (#114942)
Miss Islington (bot) [Fri, 2 Feb 2024 23:22:22 +0000 (00:22 +0100)] 
[3.12] gh-114913: Add newline to subprocess doc (GH-114941) (#114942)

*creationflags* is a separate topic from *startupinfo*.
Start sentence with 'If given', like previous sentence.
(cherry picked from commit 1183f1e6bfba06ae6c8ea362f96e977bc288e627)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
21 months ago[3.12] Bump ruff to 0.2.0 (GH-114932) (#114935)
Miss Islington (bot) [Fri, 2 Feb 2024 22:03:25 +0000 (23:03 +0100)] 
[3.12] Bump ruff to 0.2.0 (GH-114932) (#114935)

Bump ruff to 0.2.0 (GH-114932)
(cherry picked from commit 920b89f62751e64a35fa1bebc03701af6d6f31f2)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
21 months ago[3.12] Correct timedelta description (GH-101417) (GH-114938)
Miss Islington (bot) [Fri, 2 Feb 2024 21:48:44 +0000 (22:48 +0100)] 
[3.12] Correct timedelta description (GH-101417) (GH-114938)

It only represents the difference between two datetime or
date objects, not between two time objects.
(cherry picked from commit 73d20cafb54193c94577ca60df1ba0410b3ced74)

Co-authored-by: John Belmonte <john@neggie.net>
21 months ago[3.12] Fix indentation of "versionchanged" in datetime.rst (GH-114933) (GH-114937)
Miss Islington (bot) [Fri, 2 Feb 2024 21:18:07 +0000 (22:18 +0100)] 
[3.12] Fix indentation of "versionchanged" in datetime.rst (GH-114933) (GH-114937)

(cherry picked from commit b27812d6320e35d62d91f1b3714be1e38021101a)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-114728: Fix documentation for comparison of objects in datetime module...
Miss Islington (bot) [Fri, 2 Feb 2024 19:01:34 +0000 (20:01 +0100)] 
[3.12] gh-114728: Fix documentation for comparison of objects in datetime module (GH-114749) (GH-114928)

(cherry picked from commit c12240ed28aac6494750e00143bc550c4d6d8ad1)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months ago[3.12] gh-103360: Add link in stdtypes.rst to escape sequences in lexical_analysis...
Miss Islington (bot) [Fri, 2 Feb 2024 13:38:58 +0000 (14:38 +0100)] 
[3.12] gh-103360: Add link in stdtypes.rst to escape sequences in lexical_analysis.rst (GH-103638) (GH-114907)

(cherry picked from commit d29f57f6036353b4e705a42637177442bf7e07e5)

Co-authored-by: Justin Williams <97240811+juswil@users.noreply.github.com>
21 months ago[3.12] gh-103820: IDLE: Do not interpret buttons 4/5 as scrolling on non-X11 (GH...
Miss Islington (bot) [Fri, 2 Feb 2024 13:12:31 +0000 (14:12 +0100)] 
[3.12] gh-103820: IDLE: Do not interpret buttons 4/5 as scrolling on non-X11 (GH-103821) (GH-114901)

Also fix test_mousewheel: do not skip a check which was broken due to incorrect
delta on Aqua and XQuartz, and probably not because of `.update_idletasks()`.
(cherry picked from commit d25d4ee60cc789a8b9c222859bb720ade1ab2e30)

Co-authored-by: Christopher Chavez <chrischavez@gmx.us>
21 months ago[3.12] Move "format" param doc of shutil.make_archive() on its own paragraph (GH...
Miss Islington (bot) [Fri, 2 Feb 2024 10:28:32 +0000 (11:28 +0100)] 
[3.12] Move "format" param doc of shutil.make_archive() on its own paragraph (GH-103829) (GH-114897)

(cherry picked from commit 53339a0ef72fcfc15221792b117c4670b07a0b20)

Co-authored-by: Michal Kaptur <kaptur.michal@gmail.com>
21 months ago[3.12] gh-101100: Fix sphinx warnings in `howto/logging.rst` (GH-114846) (#114878)
Hugo van Kemenade [Thu, 1 Feb 2024 20:45:51 +0000 (22:45 +0200)] 
[3.12] gh-101100: Fix sphinx warnings in `howto/logging.rst` (GH-114846) (#114878)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
21 months ago[3.12] gh-89891: Refer SharedMemory implementation as POSIX (GH-104678) (GH-114873)
Miss Islington (bot) [Thu, 1 Feb 2024 20:35:43 +0000 (21:35 +0100)] 
[3.12] gh-89891: Refer SharedMemory implementation as POSIX (GH-104678) (GH-114873)

It only uses POSIX API.
(cherry picked from commit 500ede01178a8063bb2a3c664172dffa1b40d7c9)

Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
21 months ago[3.12] Correct description of inheriting from another class (GH-114660) (#114868)
Miss Islington (bot) [Thu, 1 Feb 2024 18:15:11 +0000 (19:15 +0100)] 
[3.12] Correct description of inheriting from another class (GH-114660) (#114868)

"inherits <someclass>" grates to this reader. I think it should be "inherits from <someclass>".
(cherry picked from commit c9c6e04380ffedd25ea2e582f9057ab9612960c9)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
21 months ago[3.12] gh-105031: Clarify datetime documentation for ISO8601 (GH-105049) (GH-114866)
Miss Islington (bot) [Thu, 1 Feb 2024 17:34:08 +0000 (18:34 +0100)] 
[3.12] gh-105031: Clarify datetime documentation for ISO8601 (GH-105049) (GH-114866)

(cherry picked from commit e9dab656380ec03d628979975646748330b76b9b)

Co-authored-by: Nicholas Hollander <31573882+nhhollander@users.noreply.github.com>
21 months ago[3.12] gh-105089: Fix test_create_directory_with_write test failure in AIX (GH-105228...
Miss Islington (bot) [Thu, 1 Feb 2024 12:22:54 +0000 (13:22 +0100)] 
[3.12] gh-105089: Fix test_create_directory_with_write test failure in AIX (GH-105228) (GH-114860)

(cherry picked from commit 4dbb198d279a06fed74ea4c38f93d658baf38170)

Co-authored-by: Ayappan Perumal <ayappap2@in.ibm.com>
21 months ago[3.12] gh-107461 ctypes: Add a testcase for nested `_as_parameter_` lookup (GH-107462...
Miss Islington (bot) [Thu, 1 Feb 2024 12:06:08 +0000 (13:06 +0100)] 
[3.12] gh-107461 ctypes: Add a testcase for nested `_as_parameter_` lookup (GH-107462) (GH-114858)

(cherry picked from commit 0bf42dae7e73febc76ea96fd58af6b765a12b8a7)

Co-authored-by: Tomas R <tomas.roun8@gmail.com>
21 months ago[3.12] Fix typos in ElementTree documentation (GH-108848) (GH-114854)
Miss Islington (bot) [Thu, 1 Feb 2024 09:41:01 +0000 (10:41 +0100)] 
[3.12] Fix typos in ElementTree documentation (GH-108848) (GH-114854)

PI objects instead of comment objects.
(cherry picked from commit de6f97cd3519c5d8528d8ca1bb00fce4e9969671)

Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
21 months ago[3.12] gh-114648: Add IndexError exception to tutorial datastructures list.pop entry...
Miss Islington (bot) [Thu, 1 Feb 2024 03:52:58 +0000 (04:52 +0100)] 
[3.12] gh-114648: Add IndexError exception to tutorial datastructures list.pop entry (GH-114681) (#114841)

Remove redundant explanation of optional argument.
(cherry picked from commit 57c3e775df5a5ca0982adf15010ed80a158b1b80)

Co-authored-by: srinivasan <shivnaren@gmail.com>
21 months ago[3.12] gh-67230: Add versionadded notes for QUOTE_NOTNULL and QUOTE_STRINGS (GH-11481...
Miss Islington (bot) [Thu, 1 Feb 2024 03:17:56 +0000 (04:17 +0100)] 
[3.12] gh-67230: Add versionadded notes for QUOTE_NOTNULL and QUOTE_STRINGS (GH-114816) (#114840)

As @GPHemsley pointed out, GH-29469 omitted `versionadded` notes for the 2 new items.
(cherry picked from commit 586057e9f80d57f16334c0eee8431931e4aa8cff)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
21 months ago[3.12] CI: Test on macOS M1 (GH-114766) (#114836)
Miss Islington (bot) [Thu, 1 Feb 2024 01:57:08 +0000 (02:57 +0100)] 
[3.12] CI: Test on macOS M1 (GH-114766) (#114836)

Test on macOS M1
(cherry picked from commit 854e2bc42340b22cdeea5d16ac8b1ef3762c6909)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
21 months ago[3.12] gh-114811: Change '\*' to '*' in warnings.rst (GH-114819) (#114837)
Miss Islington (bot) [Thu, 1 Feb 2024 01:54:25 +0000 (02:54 +0100)] 
[3.12] gh-114811: Change  '\*' to '*' in warnings.rst (GH-114819) (#114837)

Regression in 3.12.
(cherry picked from commit ff8939e5abaad7cd87f4d1f07ca7f6d176090f6c)

Co-authored-by: Pradyot Ranjan <99216956+prady0t@users.noreply.github.com>
21 months ago[3.12] gh-109534: fix reference leak when SSL handshake fails (GH-114074) (#114829)
Miss Islington (bot) [Thu, 1 Feb 2024 01:00:09 +0000 (02:00 +0100)] 
[3.12] gh-109534: fix reference leak when SSL handshake fails (GH-114074) (#114829)

gh-109534: fix reference leak when SSL handshake fails (GH-114074)
(cherry picked from commit 80aa7b3688b8fdc85cd53d4113cb5f6ce5500027)

Co-authored-by: Jamie Phan <jamie@ordinarylab.dev>
21 months ago[3.12] gh-111112: Avoid potential confusion in TCP server example. (GH-111113) (...
Miss Islington (bot) [Thu, 1 Feb 2024 00:50:34 +0000 (01:50 +0100)] 
[3.12] gh-111112: Avoid potential confusion in TCP server example. (GH-111113) (#114831)

gh-111112: Avoid potential confusion in TCP server example. (GH-111113)

Improve misleading TCP server docs and example.

socket.recv(), as documented by the Python reference documentation,
returns at most `bufsize` bytes, and the underlying TCP protocol means
there is no guaranteed correspondence between what is sent by the client
and what is received by the server.

This conflation could mislead readers into thinking that TCP is
datagram-based or has similar semantics, which will likely appear to
work for simple cases, but introduce difficult to reproduce bugs.
(cherry picked from commit a79a27242f75fc33416d4d135a4a542898d140e5)

Co-authored-by: Aidan Holm <alfh@google.com>
21 months ago[3.12] Add note to `sys.orig_argv` clarifying the difference from `sys.argv` (GH...
Miss Islington (bot) [Wed, 31 Jan 2024 21:40:11 +0000 (22:40 +0100)] 
[3.12] Add note to `sys.orig_argv` clarifying the difference from `sys.argv` (GH-114630) (#114821)

Add note to `sys.orig_argv` clarifying the difference from `sys.argv` (GH-114630)
(cherry picked from commit 1836f674c0d86ec3375189a550c8f4a52ff89ae8)

Co-authored-by: Bradley Reynolds <bradley.reynolds@darbia.dev>
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
21 months ago[3.12] gh-114790: Do not execute `workflows/require-pr-label.yml` on forks (GH-114791...
Miss Islington (bot) [Wed, 31 Jan 2024 12:27:12 +0000 (13:27 +0100)] 
[3.12] gh-114790: Do not execute `workflows/require-pr-label.yml` on forks (GH-114791) (#114800)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
21 months ago[3.12] gh-114737: Revert change to ElementTree.iterparse "root" attribute (GH-114755...
Miss Islington (bot) [Wed, 31 Jan 2024 11:59:58 +0000 (12:59 +0100)] 
[3.12] gh-114737: Revert change to ElementTree.iterparse "root" attribute (GH-114755) (GH-114798)

Prior to gh-114269, the iterator returned by ElementTree.iterparse was
initialized with the root attribute as None. This restores the previous
behavior.
(cherry picked from commit 66f95ea6a65deff547cab0d312b8c8c8a4cf8beb)

Co-authored-by: Sam Gross <colesbury@gmail.com>
21 months ago[3.12] gh-101100: Fix class reference in library/test.rst (GH-114769) (GH-114794)
Miss Islington (bot) [Wed, 31 Jan 2024 09:41:10 +0000 (10:41 +0100)] 
[3.12] gh-101100: Fix class reference in library/test.rst (GH-114769) (GH-114794)

The text clearly seems to be referencing `TestFuncAcceptsSequencesMixin`,
for which no target is available. Name the class properly and suppress
the dangling reference.
(cherry picked from commit 7a93db44257c0404dc407ff2ddc997f4bb8890ed)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
21 months ago[3.12] gh-101100: Fix references in csv docs (GH-114658) (GH-114771)
Skip Montanaro [Wed, 31 Jan 2024 09:32:25 +0000 (03:32 -0600)] 
[3.12] gh-101100: Fix references in csv docs (GH-114658) (GH-114771)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
(cherry picked from commit 3911b42cc0d404e0eac87fce30b740b08618ff06)

21 months ago[3.12] Docs: mark up dbm.gnu.open() and dbm.ndbm.open() using param list (GH-114762...
Miss Islington (bot) [Wed, 31 Jan 2024 07:06:13 +0000 (08:06 +0100)] 
[3.12] Docs: mark up dbm.gnu.open() and dbm.ndbm.open() using param list (GH-114762) (#114783)

(cherry picked from commit c8cf5d7d148944f2850f25b02334400dd0238cb0)

Co-authored-by: Erlend E. Aasland <erlend@python.org>
21 months ago[3.12] gh-106392: Fix inconsistency in deprecation warnings in datetime module (GH...
Miss Islington (bot) [Wed, 31 Jan 2024 03:24:27 +0000 (04:24 +0100)] 
[3.12] gh-106392: Fix inconsistency in deprecation warnings in datetime module (GH-114761) (#114767)

gh-106392: Fix inconsistency in deprecation warnings in datetime module (GH-114761)
(cherry picked from commit dc4cd2c9ba60e2ee7e534e2f6e93c4c135df23b9)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
21 months agogh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)
Miss Islington (bot) [Wed, 31 Jan 2024 00:15:16 +0000 (01:15 +0100)] 
gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)

(cherry picked from commit a06b606462740058b5d52fefdcdcd679d4f40260)

Co-authored-by: Diego Russo <diego.russo@arm.com>
21 months ago[3.12] Clarify one-item tuple (GH-114745) (#114757)
Miss Islington (bot) [Tue, 30 Jan 2024 18:50:28 +0000 (19:50 +0100)] 
[3.12] Clarify one-item tuple (GH-114745) (#114757)

A 'single tuple' means 'one tuple, of whatever length.
Remove the unneeded and slightly distracting parenthetical 'singleton' comment.
(cherry picked from commit a1332a99cf1eb9b879d4b1f28761b096b5749a0d)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
21 months ago[3.12] Set `hosted_on` for Read the Docs builds (GH-114697) (#114734)
Miss Islington (bot) [Mon, 29 Jan 2024 21:30:22 +0000 (22:30 +0100)] 
[3.12] Set `hosted_on` for Read the Docs builds (GH-114697) (#114734)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>