[Python-checkins] [3.11] Docs: specify XML document name in xml.etree.elementtree example (GH-24223) (#117430)

2024-04-01 Thread erlend-aasland
https://github.com/python/cpython/commit/5b547de1f7d14a6e9d54111286baa7a196efcac7 commit: 5b547de1f7d14a6e9d54111286baa7a196efcac7 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: erlend-aasland date: 2024-04-01T22:02:54+02:00 summary: [3.11]

[Python-checkins] [3.12] Docs: specify XML document name in xml.etree.elementtree example (GH-24223) (#117429)

2024-04-01 Thread erlend-aasland
https://github.com/python/cpython/commit/a4a8af07cfa17bfd1a8a1d5d62ea514368135a25 commit: a4a8af07cfa17bfd1a8a1d5d62ea514368135a25 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: erlend-aasland date: 2024-04-01T22:02:34+02:00 summary: [3.12]

[Python-checkins] [3.11] Docs: add more links to PIPE in subprocess docs (GH-25416) (#117428)

2024-04-01 Thread erlend-aasland
https://github.com/python/cpython/commit/8dcda74f2b798acfa908c7c75940c93eaa4a5f69 commit: 8dcda74f2b798acfa908c7c75940c93eaa4a5f69 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: erlend-aasland date: 2024-04-01T19:58:28Z summary: [3.11] Docs

[Python-checkins] [3.12] Docs: add more links to PIPE in subprocess docs (GH-25416) (#117427)

2024-04-01 Thread erlend-aasland
https://github.com/python/cpython/commit/4a3fc49d2d462d90922e3b5708b0f7d0b475edf2 commit: 4a3fc49d2d462d90922e3b5708b0f7d0b475edf2 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: erlend-aasland date: 2024-04-01T19:56:36Z summary: [3.12] Docs

[Python-checkins] Docs: specify XML document name in xml.etree.elementtree example (#24223)

2024-04-01 Thread erlend-aasland
https://github.com/python/cpython/commit/9dae05ee59eeba0e67af2a46f2a2907c9f8d7e4a commit: 9dae05ee59eeba0e67af2a46f2a2907c9f8d7e4a branch: main author: Moshe Kaplan committer: erlend-aasland date: 2024-04-01T19:53:00Z summary: Docs: specify XML document name in xml.etree.elementtree example (#24

[Python-checkins] Docs: add more links to PIPE in subprocess docs (#25416)

2024-04-01 Thread erlend-aasland
https://github.com/python/cpython/commit/fc2071687b708598264a3403b7f9104667c1092f commit: fc2071687b708598264a3403b7f9104667c1092f branch: main author: Matthew Davis <[email protected]> committer: erlend-aasland date: 2024-04-01T21:49:14+02:00 summary: Docs: add more lin

[Python-checkins] GH-117337: Deprecate `glob.glob0()` and `glob.glob1()`. (#117371)

2024-04-01 Thread barneygale
https://github.com/python/cpython/commit/fc8007ee3635db6ab73e132ebff987c910b6d538 commit: fc8007ee3635db6ab73e132ebff987c910b6d538 branch: main author: Barney Gale committer: barneygale date: 2024-04-01T19:37:41Z summary: GH-117337: Deprecate `glob.glob0()` and `glob.glob1()`. (#117371) These u

[Python-checkins] gh-77714: Provide an async iterator version of as_completed (GH-22491)

2024-04-01 Thread serhiy-storchaka
https://github.com/python/cpython/commit/c741ad3537193c63fe697a8f0316aecd45eeb9ba commit: c741ad3537193c63fe697a8f0316aecd45eeb9ba branch: main author: Justin Turner Arthur committer: serhiy-storchaka date: 2024-04-01T20:07:29+03:00 summary: gh-77714: Provide an async iterator version of as_comp

[Python-checkins] Silence compiler warnings in gc.c (#117422)

2024-04-01 Thread gvanrossum
https://github.com/python/cpython/commit/ddf814db744006e0f42328aa15ace97c9d8ad681 commit: ddf814db744006e0f42328aa15ace97c9d8ad681 branch: main author: Guido van Rossum committer: gvanrossum date: 2024-04-01T16:13:38Z summary: Silence compiler warnings in gc.c (#117422) files: M Python/gc.c di

[Python-checkins] gh-94808: Fix refcounting in PyObject_Print tests (GH-117421)

2024-04-01 Thread encukou
https://github.com/python/cpython/commit/179869af922252a0c1cef65fd2923856895e7d1b commit: 179869af922252a0c1cef65fd2923856895e7d1b branch: main author: Petr Viktorin committer: encukou date: 2024-04-01T17:01:22+02:00 summary: gh-94808: Fix refcounting in PyObject_Print tests (GH-117421) files:

[Python-checkins] gh-117142: ctypes: Unify meta tp slot functions (GH-117143)

2024-04-01 Thread encukou
https://github.com/python/cpython/commit/dd44ab994b7262f0704d64996e0a1bc37b233407 commit: dd44ab994b7262f0704d64996e0a1bc37b233407 branch: main author: neonene <[email protected]> committer: encukou date: 2024-04-01T15:28:14+02:00 summary: gh-117142: ctypes: Unify meta tp

[Python-checkins] gh-94808:Improve coverage of PyObject_Print (GH-98749)

2024-04-01 Thread encukou
https://github.com/python/cpython/commit/90c3c68a658db6951b77a5be50088ec2f6adc8eb commit: 90c3c68a658db6951b77a5be50088ec2f6adc8eb branch: main author: MonadChains committer: encukou date: 2024-04-01T12:52:25Z summary: gh-94808:Improve coverage of PyObject_Print (GH-98749) files: A Modules/_tes

[Python-checkins] gh-91565: Replace bugs.python.org links with Devguide/GitHub ones (GH-91568)

2024-04-01 Thread encukou
https://github.com/python/cpython/commit/3de09cadde788065a4f2d45117e789c9353bbd12 commit: 3de09cadde788065a4f2d45117e789c9353bbd12 branch: main author: Steve (Gadget) Barnes committer: encukou date: 2024-04-01T13:02:07Z summary: gh-91565: Replace bugs.python.org links with Devguide/GitHub ones

[Python-checkins] Bump mypy from 1.8.0 to 1.9.0 in /Tools (#117418)

2024-04-01 Thread AlexWaygood
https://github.com/python/cpython/commit/348cf6e0078eae156c503e8f61ef5e27ae28e57b commit: 348cf6e0078eae156c503e8f61ef5e27ae28e57b branch: main author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> committer: AlexWaygood date: 2024-04-01T11:14:37Z summary: Bump mypy from 1.8

[Python-checkins] build(deps-dev): bump types-psutil from 5.9.5.20240205 to 5.9.5.20240316 in /Tools (#117417)

2024-04-01 Thread AlexWaygood
https://github.com/python/cpython/commit/9b403fb559bfce93a478937e0ef7e539a9a95283 commit: 9b403fb559bfce93a478937e0ef7e539a9a95283 branch: main author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> committer: AlexWaygood date: 2024-04-01T11:05:14Z summary: build(deps-dev): b

[Python-checkins] build(deps-dev): bump types-setuptools from 69.1.0.20240301 to 69.2.0.20240317 in /Tools (#117419)

2024-04-01 Thread AlexWaygood
https://github.com/python/cpython/commit/93c7d9d17b571b6a181af7c02830d29819535c35 commit: 93c7d9d17b571b6a181af7c02830d29819535c35 branch: main author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> committer: AlexWaygood date: 2024-04-01T11:38:38+01:00 summary: build(deps-de

[Python-checkins] [3.12] build(deps): bump actions/add-to-project from 0.6.0 to 1.0.0 (GH-117415) (#117420)

2024-04-01 Thread ezio-melotti
https://github.com/python/cpython/commit/87e470b039a4ae615b11bf34f205c1c5f84ff543 commit: 87e470b039a4ae615b11bf34f205c1c5f84ff543 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: ezio-melotti date: 2024-04-01T12:35:55+02:00 summary: [3.12] b

[Python-checkins] build(deps): bump actions/add-to-project from 0.6.0 to 1.0.0 (#117415)

2024-04-01 Thread hugovk
https://github.com/python/cpython/commit/3bb12e407c183946471272f8aee098e54e62a333 commit: 3bb12e407c183946471272f8aee098e54e62a333 branch: main author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> committer: hugovk <[email protected]> date: 2024-04-01T09