3.9
Commits on Jan 8, 2022
-
bpo-46290: Fix parameter names in dataclasses docs (GH-30450)
(cherry picked from commit ef5376e) Co-authored-by: Zsolt Dollenstein <zsol.zsol@gmail.com>
Commits on Jan 7, 2022
-
bpo-28546: [doc] Clarify setting pdb breakpoints (GH-30360)
Co-authored-by: Ian Kelling <ian@iankelling.org> (cherry picked from commit 6d07a9f) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-
bpo-46216: remove spurious link to os.system() from os.time() documen…
-
bpo-24650: Use full term "generator function" in yield expressions do…
-
bpo-46070: Fix asyncio initialisation guard (GH-30423)
If init flag is set, exit successfully immediately. If not, only set the flag after successful initialization. (cherry picked from commit b127e70) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Commits on Jan 6, 2022
Commits on Jan 5, 2022
-
bpo-46263: Don't use MULTIARCH on FreeBSD (GH-30410)
(cherry picked from commit cae5554) Co-authored-by: Christian Heimes <christian@python.org>
Commits on Jan 4, 2022
-
Fix missing "," in the documentation of Executor Objects (GH-30404)
(cherry picked from commit f404e26) Co-authored-by: Philipp Claßen <philipp.classen@posteo.de> Co-authored-by: Philipp Claßen <philipp.classen@posteo.de>
-
bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (
GH-30168) * bpo-20369: concurrent.futures.wait() now deduplicates futures given as arg. *
📜 🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> (cherry picked from commit 7d7817c) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> -
bpo-33252: Document that ResourceWarning is ignored by default (GH-30358
) (GH-30396) `ResourceWarning` is ignored by default. Document this behaviour, for consistency with others in this table such as `DeprecationWarning`. Documentation PR can skip NEWS file. Automerge-Triggered-By: GH:iritkatriel (cherry picked from commit b949845) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-
bpo-46239: improve error message when importing `asyncio.windows_even…
Commits on Jan 3, 2022
-
bpo-34538: Remove Exception subclassing from tutorial (GH-30361)
Remove the bit about subclassing exceptions. Documentation PR can skip the NEWS label. Automerge-Triggered-By: GH:iritkatriel (cherry picked from commit 2db5613) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-
bpo-34931: [doc] clarify behavior of os.path.splitext() on paths with…
-
bpo-40477: macOS Python Launcher app fixes for recent macOS releases (G…
…H-30348) This change solves two problems encountered by users of the macOS Python Launcher app on recent macOS releases (10.14+): - The launcher app was no longer able to launch the macOS Terminal.app to run a script. - Even if Terminal.app was already launched, the launcher app was unable to send an Apple Event to Terminal.app to open and run Python with the desired .py file. (cherry picked from commit 549e628) Co-authored-by: Ned Deily <nad@python.org>
Commits on Jan 2, 2022
-
Update copyright year to 2022. (GH-30335)
Automerge-Triggered-By: GH:benjaminp (cherry picked from commit ba00f0d) Co-authored-by: Benjamin Peterson <benjamin@python.org>
Commits on Jan 1, 2022
Commits on Dec 30, 2021
-
bpo-46085: Fix iterator cache mechanism of OrderedDict. (GH-30290)
(cherry picked from commit fb44d05) Co-authored-by: Dong-hee Na <donghee.na@python.org>
Commits on Dec 29, 2021
-
closes docs: remove references to Py_USING_MEMORY_DEBUGGER (GH-30284)
(cherry picked from commit 8e11237) Co-authored-by: Carlos Damazio <carlos.damazio@damazio.dev>
Commits on Dec 26, 2021
-
bpo-45496: Allow flexibility in winfo_rgb tests (GH-30185)
(cherry picked from commit 2e3e0d2) Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com>
-
[3.9] bpo-46032: Check types in singledispatch's register() at declar…
…ation time (GH-30050) (GH-30254) (GH-30255) The registry() method of functools.singledispatch() functions checks now the first argument or the first parameter annotation and raises a TypeError if it is not supported. Previously unsupported "types" were ignored (e.g. typing.List[int]) or caused an error at calling time (e.g. list[int]). (cherry picked from commit 078abb6) (cherry picked from commit 03c7449) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Commits on Dec 24, 2021
-
bpo-45878: convert
try/excepttoself.assertRaisesin `Lib/ctypes… -
Allow test_pathlib to pass on systems where fakeuser exists. (GH-30244)
(cherry picked from commit d888067) Co-authored-by: Gregory P. Smith <greg@krypto.org>