[Python-checkins] [3.14] gh-137288: Fix bug where boolean expressions are not associated with the correct exception handler (GH-137310). (#137427)

2025-08-12 Thread hugovk
https://github.com/python/cpython/commit/0ccf244a197d7a5db216e8ed630089cefa370dd6 commit: 0ccf244a197d7a5db216e8ed630089cefa370dd6 branch: 3.14 author: Irit Katriel <1055913+iritkatr...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-08-12T12:56:37+0

[Python-checkins] gh-137242: Add Android CI job (#137186)

2025-08-12 Thread hugovk
https://github.com/python/cpython/commit/f660ec37531b5e368a27ba065f73d31ff6fb6680 commit: f660ec37531b5e368a27ba065f73d31ff6fb6680 branch: main author: Malcolm Smith committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-08-12T20:16:04+03:00 summary: gh-137242: Add Android CI job

[Python-checkins] [3.14] gh-135228: When @dataclass(slots=True) replaces a dataclass, make the original class collectible (take 2) (GH-137047) (#137666)

2025-08-12 Thread hugovk
https://github.com/python/cpython/commit/4dda1768be01e7fb99135d2cb488857823d68fd2 commit: 4dda1768be01e7fb99135d2cb488857823d68fd2 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-08-1

[Python-checkins] GH-137562: Fix github-issue number for deallocated objects in cache bug (GH-137614)

2025-08-12 Thread nascheme
https://github.com/python/cpython/commit/654b8d936450d94472e26f0b14a9f8d6d249563a commit: 654b8d936450d94472e26f0b14a9f8d6d249563a branch: main author: Sergey Miryanov committer: nascheme date: 2025-08-12T10:32:53-07:00 summary: GH-137562: Fix github-issue number for deallocated objects in cache

[Python-checkins] gh-133403: Check `generate_stdlib_module_names` and `check_extension_modules` with mypy (#137546)

2025-08-12 Thread sobolevn
https://github.com/python/cpython/commit/68a61b0f1d5661180fd432ff9b8ab21272468a87 commit: 68a61b0f1d5661180fd432ff9b8ab21272468a87 branch: main author: sobolevn committer: sobolevn date: 2025-08-12T18:11:18+03:00 summary: gh-133403: Check `generate_stdlib_module_names` and `check_extension_modul

[Python-checkins] GH-137630: Convert ``_interpreters`` to use Argument Clinic (#137631)

2025-08-12 Thread AA-Turner
https://github.com/python/cpython/commit/be56464c4b672ada378d3b9cc8076af56d96cf7b commit: be56464c4b672ada378d3b9cc8076af56d96cf7b branch: main author: Adam Turner <9087854+aa-tur...@users.noreply.github.com> committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com> date: 2025-08-12T16:23:1

[Python-checkins] [3.14] gh-137400: Fix a crash when disabling profiling across all threads (gh-137471) (#137648)

2025-08-12 Thread hugovk
https://github.com/python/cpython/commit/4ebd928b0096ca1dd78d5d3e6c787dbc40a43c11 commit: 4ebd928b0096ca1dd78d5d3e6c787dbc40a43c11 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-08-1

[Python-checkins] [3.13] Update pre-commit hooks (GH-137591) (GH-137641)

2025-08-12 Thread encukou
https://github.com/python/cpython/commit/5d64571b43bc75b2971af6aa046dfba64fb43ef8 commit: 5d64571b43bc75b2971af6aa046dfba64fb43ef8 branch: 3.13 author: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) committer: encukou date: 2025-08-12T13:42:55+02:00 summary: [3.13] Update pre-commit hooks (GH-13

[Python-checkins] [3.14] gh-137288: Update version in magic number log (GH-137665) (#137667)

2025-08-12 Thread hugovk
https://github.com/python/cpython/commit/946b226b90d444ddfb4d3c777fb22e900dd467b4 commit: 946b226b90d444ddfb4d3c777fb22e900dd467b4 branch: 3.14 author: Petr Viktorin committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-08-12T12:18:20Z summary: [3.14] gh-137288: Update version in

[Python-checkins] gh-137288: Update 3.14 magic numbers (GH-137665)

2025-08-12 Thread encukou
https://github.com/python/cpython/commit/715647a99ad91ebc77f3a250f6417c46f33d commit: 715647a99ad91ebc77f3a250f6417c46f33d branch: main author: Hugo van Kemenade <1324225+hug...@users.noreply.github.com> committer: encukou date: 2025-08-12T13:52:09+02:00 summary: gh-137288: Update 3.14 ma

[Python-checkins] [3.14] GH-137426: Remove code deprecation of `importlib.abc.ResourceLoader` (GH-137567) (#137654)

2025-08-12 Thread hugovk
https://github.com/python/cpython/commit/daed07a1f9965be4eecbc9d044d26bc08846c4e3 commit: daed07a1f9965be4eecbc9d044d26bc08846c4e3 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2025-08-1

[Python-checkins] gh-135228: When @dataclass(slots=True) replaces a dataclass, make the original class collectible (take 2) (GH-137047)

2025-08-12 Thread encukou
https://github.com/python/cpython/commit/6859b95cfff26c9ef52c5535d2b3662f17ff5b3d commit: 6859b95cfff26c9ef52c5535d2b3662f17ff5b3d branch: main author: Jelle Zijlstra committer: encukou date: 2025-08-12T13:16:54+02:00 summary: gh-135228: When @dataclass(slots=True) replaces a dataclass, make the

[Python-checkins] gh-136672: Docs: Move Enum functions and add examples (GH-136791)

2025-08-12 Thread ethanfurman
https://github.com/python/cpython/commit/003bd8cc63279b455a7ca5d783ff3623fd2b3804 commit: 003bd8cc63279b455a7ca5d783ff3623fd2b3804 branch: main author: RafaelWO <38643099+rafae...@users.noreply.github.com> committer: ethanfurman date: 2025-08-12T12:28:27-07:00 summary: gh-136672: Docs: Move Enum

[Python-checkins] [3.13] gh-136672: Docs: Move Enum functions and add examples (GH-136791) (#137689)

2025-08-12 Thread AA-Turner
https://github.com/python/cpython/commit/85637f0bd9f043f4b3c75cef3e495af7353b8966 commit: 85637f0bd9f043f4b3c75cef3e495af7353b8966 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com> date: 202

[Python-checkins] GH-137623: Begin enforcing docstring length in Argument Clinic (#137624)

2025-08-12 Thread AA-Turner
https://github.com/python/cpython/commit/6baf5524847ef181e901ea5d04d4131132c5a7d5 commit: 6baf5524847ef181e901ea5d04d4131132c5a7d5 branch: main author: Adam Turner <9087854+aa-tur...@users.noreply.github.com> committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com> date: 2025-08-12T20:17:3

[Python-checkins] GH-137630: Argument Clinic: Reduce use of 'as' for renaming in ``_interpretersmodule.c`` (#137680)

2025-08-12 Thread AA-Turner
https://github.com/python/cpython/commit/797c2c33e181badc053f76c58b49e01ccc9a2163 commit: 797c2c33e181badc053f76c58b49e01ccc9a2163 branch: main author: Adam Turner <9087854+aa-tur...@users.noreply.github.com> committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com> date: 2025-08-12T23:28:3

[Python-checkins] [3.13] gh-137242: Add Android CI job (GH-137186) (#137684)

2025-08-12 Thread freakboy3742
https://github.com/python/cpython/commit/30194914c29d852143b930f007f6a663cfe4bf8f commit: 30194914c29d852143b930f007f6a663cfe4bf8f branch: 3.13 author: Hugo van Kemenade <1324225+hug...@users.noreply.github.com> committer: freakboy3742 date: 2025-08-13T06:00:20+08:00 summary: [3.13] gh-137242: Ad

[Python-checkins] gh-133403: Run `mypy` on `Tools/build/mypy.ini` changes (#137692)

2025-08-12 Thread sobolevn
https://github.com/python/cpython/commit/e93dca72232efe6d5cf2d52ea6dd3967ff61360b commit: e93dca72232efe6d5cf2d52ea6dd3967ff61360b branch: main author: sobolevn committer: sobolevn date: 2025-08-12T22:01:50Z summary: gh-133403: Run `mypy` on `Tools/build/mypy.ini` changes (#137692) files: M .gi

[Python-checkins] [3.13] gh-133403: Check `generate_stdlib_module_names` and `check_extension_modules` with mypy (GH-137546) (#137691)

2025-08-12 Thread sobolevn
https://github.com/python/cpython/commit/5e486627267ae7d3eec82b572e611ffc724dd7fe commit: 5e486627267ae7d3eec82b572e611ffc724dd7fe branch: 3.13 author: sobolevn committer: sobolevn date: 2025-08-13T08:47:48+03:00 summary: [3.13] gh-133403: Check `generate_stdlib_module_names` and `check_extensi

[Python-checkins] [3.13] gh-133403: Run `mypy` on `Tools/build/mypy.ini` changes (GH-137692) (#137699)

2025-08-12 Thread sobolevn
https://github.com/python/cpython/commit/165532ccdb20da1618a13dc451634c3ff655e04a commit: 165532ccdb20da1618a13dc451634c3ff655e04a branch: 3.13 author: sobolevn committer: sobolevn date: 2025-08-13T06:18:29Z summary: [3.13] gh-133403: Run `mypy` on `Tools/build/mypy.ini` changes (GH-137692) (#1