[Python-checkins] gh-133374: fix test_python_legacy_windows_stdio (GH-134080)

2025-05-19 Thread methane
https://github.com/python/cpython/commit/652d6938ef8c42c1c4c180c3f0e257c26c6677da commit: 652d6938ef8c42c1c4c180c3f0e257c26c6677da branch: main author: Inada Naoki committer: methane date: 2025-05-20T13:33:54+09:00 summary: gh-133374: fix test_python_legacy_windows_stdio (GH-134080) files: M Li

[Python-checkins] gh-134087: enforce signature of `threading.RLock` (#134178)

2025-05-19 Thread picnixz
https://github.com/python/cpython/commit/d6dc33ed8086fbd79f6adaeac4e329f29a13f834 commit: d6dc33ed8086fbd79f6adaeac4e329f29a13f834 branch: main author: Bénédikt Tran <10796600+picn...@users.noreply.github.com> committer: picnixz <10796600+picn...@users.noreply.github.com> date: 2025-05-19T11:26:14+

[Python-checkins] [3.14] gh-76023: Make os.path.realpath to ignore WinError 1005 in non-strict mode (GH-128328) (GH-134203)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/9136ccfffef99db5743dd692d10b5d12e405a275 commit: 9136ccfffef99db5743dd692d10b5d12e405a275 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2025-05-19T09:59:58Z summary: [3.14] gh

[Python-checkins] [3.13] gh-133890: Handle UnicodeEncodeError in tarfile (GH-134147) (GH-134196)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/06a8c0613ee80448ce5416ac687a0f841e1fc5db commit: 06a8c0613ee80448ce5416ac687a0f841e1fc5db branch: 3.13 author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-05-19T10:37:36Z summary: [3.13] gh-133890: Handle UnicodeEncodeError in tarfile (GH-1341

[Python-checkins] [3.14] gh-133999: Fix `except` parsing regression in 3.14 (GH-134035) (#134206)

2025-05-19 Thread sobolevn
https://github.com/python/cpython/commit/d9c08c57e93802f417fd11ee868cf98805c0bc6b commit: d9c08c57e93802f417fd11ee868cf98805c0bc6b branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: sobolevn date: 2025-05-19T14:26:27+03:00 summary: [3.14] gh-13

[Python-checkins] gh-76023: Make os.path.realpath to ignore WinError 1005 in non-strict mode (GH-128328)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/d55e11b8049e3abf3cc187b4958224b225a39897 commit: d55e11b8049e3abf3cc187b4958224b225a39897 branch: main author: BecoKo committer: serhiy-storchaka date: 2025-05-19T09:33:15Z summary: gh-76023: Make os.path.realpath to ignore WinError 1005 in non-strict mod

[Python-checkins] gh-131178: Add tests for `http.server` command-line interface (#132540)

2025-05-19 Thread picnixz
https://github.com/python/cpython/commit/605022aeb69ae19cae1c020a6993ab5c433ce907 commit: 605022aeb69ae19cae1c020a6993ab5c433ce907 branch: main author: ggqlq <124190229+gg...@users.noreply.github.com> committer: picnixz <10796600+picn...@users.noreply.github.com> date: 2025-05-19T12:15:04Z summary:

[Python-checkins] [3.13] Docs: C API: Fix the incorrect `PyThreadState_Swap` documentation (#133900)

2025-05-19 Thread kumaraditya303
https://github.com/python/cpython/commit/8d92823ecade2543a8c1f47c0557e204d665074c commit: 8d92823ecade2543a8c1f47c0557e204d665074c branch: 3.13 author: Peter Bierma committer: kumaraditya303 date: 2025-05-19T18:24:00+05:30 summary: [3.13] Docs: C API: Fix the incorrect `PyThreadState_Swap` docum

[Python-checkins] [3.13] gh-76023: Make os.path.realpath to ignore WinError 1005 in non-strict mode (GH-128328) (GH-134204)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/ea9c9623f0db4fe8bdf76f5a814db9e6230ebea3 commit: ea9c9623f0db4fe8bdf76f5a814db9e6230ebea3 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2025-05-19T09:57:19Z summary: [3.13] gh

[Python-checkins] gh-122055: Clarify documentation for empty matches in RE (GH-133169)

2025-05-19 Thread encukou
https://github.com/python/cpython/commit/44b73d3cd4466e148460883acf4494124eae8c91 commit: 44b73d3cd4466e148460883acf4494124eae8c91 branch: main author: Serhiy Storchaka committer: encukou date: 2025-05-19T15:27:50+02:00 summary: gh-122055: Clarify documentation for empty matches in RE (GH-133169

[Python-checkins] gh-134097: Print number of refs & blocks after each statement in new REPL (gh-134136)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/c31547a5914db93b8b38c6a5261ef716255f3582 commit: c31547a5914db93b8b38c6a5261ef716255f3582 branch: main author: Kirill Podoprigora committer: ambv date: 2025-05-19T15:30:43+02:00 summary: gh-134097: Print number of refs & blocks after each statement in new

[Python-checkins] [3.14] gh-122055: Clarify documentation for empty matches in RE (GH-133169) (GH-134217)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/e3cc4008c4d73d100fcc0c69f57f925c7470d8d7 commit: e3cc4008c4d73d100fcc0c69f57f925c7470d8d7 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2025-05-19T16:49:46+03:00 summary: [3.1

[Python-checkins] gh-125843: indicate which C function caused a `curses.error` (#125844)

2025-05-19 Thread picnixz
https://github.com/python/cpython/commit/ee36db550076e5a9185444ffbc53eaf8157ef04c commit: ee36db550076e5a9185444ffbc53eaf8157ef04c branch: main author: Bénédikt Tran <10796600+picn...@users.noreply.github.com> committer: picnixz <10796600+picn...@users.noreply.github.com> date: 2025-05-19T15:53:39+

[Python-checkins] gh-125225: Fix column misalignment in help('topics') output (gh-125226)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/b22460c44d1bc597c96d4a3d27ad8373d7952820 commit: b22460c44d1bc597c96d4a3d27ad8373d7952820 branch: main author: Étienne Pelletier committer: ambv date: 2025-05-19T16:10:17+02:00 summary: gh-125225: Fix column misalignment in help('topics') output (gh-12522

[Python-checkins] gh-128045: Mark unknown opcodes as deopting to themselves (#128044)

2025-05-19 Thread DinoV
https://github.com/python/cpython/commit/cc9add695da42defc72e62c5d5389621dac54b2b commit: cc9add695da42defc72e62c5d5389621dac54b2b branch: main author: Dino Viehland committer: DinoV date: 2025-05-19T10:15:16-04:00 summary: gh-128045: Mark unknown opcodes as deopting to themselves (#128044) * M

[Python-checkins] gh-134158: Fix PyREPL coloring of double braces in f/t-strings (gh-134159)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/71ea6a6798c5853ed33188865a73b044ede8aba8 commit: 71ea6a6798c5853ed33188865a73b044ede8aba8 branch: main author: Loïc Simon committer: ambv date: 2025-05-19T16:12:23+02:00 summary: gh-134158: Fix PyREPL coloring of double braces in f/t-strings (gh-134159)

[Python-checkins] gh-134214: Fix test case in pyrepl (gh-134223)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/faebf87b3716f7103ee5410456972db36f4b3ada commit: faebf87b3716f7103ee5410456972db36f4b3ada branch: main author: Jessica Temporal committer: ambv date: 2025-05-19T16:26:04+02:00 summary: gh-134214: Fix test case in pyrepl (gh-134223) files: M Lib/test/test

[Python-checkins] gh-132795: Add docs for `multiprocessing.Semaphore.locked` (#133299)

2025-05-19 Thread kumaraditya303
https://github.com/python/cpython/commit/de70614c1387636c8f835ee3e4eb36c8ae721f21 commit: de70614c1387636c8f835ee3e4eb36c8ae721f21 branch: main author: Duprat committer: kumaraditya303 date: 2025-05-19T20:06:09+05:30 summary: gh-132795: Add docs for `multiprocessing.Semaphore.locked` (#133299)

[Python-checkins] [3.14] gh-134158: Fix PyREPL coloring of double braces in f/t-strings (gh-134159) (#134227)

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

[Python-checkins] [3.14] gh-134214: Fix test case in pyrepl (gh-134223) (gh-134229)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/7d995ea9fd45258efa8d51f70b92e0cacec74f38 commit: 7d995ea9fd45258efa8d51f70b92e0cacec74f38 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: ambv date: 2025-05-19T14:51:46Z summary: [3.14] gh-134214: Fix

[Python-checkins] [3.13] gh-134097: Print number of refs & blocks after each statement in new REPL (gh-134136) (gh-134221)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/08c9ba5b72452e8493766765e61510be82b706b3 commit: 08c9ba5b72452e8493766765e61510be82b706b3 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: ambv date: 2025-05-19T16:13:25+02:00 summary: [3.13] gh-134097

[Python-checkins] gh-128045: Syncs w/ latest opcode metadata (#134231)

2025-05-19 Thread DinoV
https://github.com/python/cpython/commit/3fa30d9e9c13c4b84bdc9fc04e33130775679e98 commit: 3fa30d9e9c13c4b84bdc9fc04e33130775679e98 branch: main author: Dino Viehland committer: DinoV date: 2025-05-19T11:08:50-04:00 summary: gh-128045: Syncs w/ latest opcode metadata (#134231) Fix opcode metadat

[Python-checkins] [3.14] gh-128045: Mark unknown opcodes as deopting to themselves (GH-128044) (#134228)

2025-05-19 Thread DinoV
https://github.com/python/cpython/commit/c869898f39a64113689b4d674b996d678dec2843 commit: c869898f39a64113689b4d674b996d678dec2843 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: DinoV date: 2025-05-19T11:09:15-04:00 summary: [3.14] gh-12804

[Python-checkins] [3.14] gh-125225: Fix column misalignment in help('topics') output (gh-125226) (gh-134225)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/89b744a772978ccd883c289c1a7066c1fb14ac04 commit: 89b744a772978ccd883c289c1a7066c1fb14ac04 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: ambv date: 2025-05-19T17:22:14+02:00 summary: [3.14] gh-125225

[Python-checkins] [3.14] gh-134097: Print number of refs & blocks after each statement in new REPL (gh-134136) (gh-134220)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/182464eb9ed1a6d045cd84d4c1851d3804ebc6bd commit: 182464eb9ed1a6d045cd84d4c1851d3804ebc6bd branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: ambv date: 2025-05-19T16:13:44+02:00 summary: [3.14] gh-134097

[Python-checkins] [3.13] gh-125225: Fix column misalignment in help('topics') output (gh-125226) (#134226)

2025-05-19 Thread ambv
https://github.com/python/cpython/commit/c1e47702a2dcdc7a7e22baaea394927080cf6300 commit: c1e47702a2dcdc7a7e22baaea394927080cf6300 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: ambv date: 2025-05-19T17:34:31+02:00 summary: [3.13] gh-125225

[Python-checkins] GH-134236: make regen-all (GH-134237)

2025-05-19 Thread brandtbucher
https://github.com/python/cpython/commit/a36ce264a9b6b0a18b78d3b0d79d2b11a685b801 commit: a36ce264a9b6b0a18b78d3b0d79d2b11a685b801 branch: main author: sobolevn committer: brandtbucher date: 2025-05-19T11:39:43-04:00 summary: GH-134236: make regen-all (GH-134237) files: _

[Python-checkins] gh-131505: Move len boundary assertions before using len. (#131536)

2025-05-19 Thread gpshead
https://github.com/python/cpython/commit/c45e661226558e997e265cf53ce1419213cc10b7 commit: c45e661226558e997e265cf53ce1419213cc10b7 branch: main author: naya451 <41294408+naya...@users.noreply.github.com> committer: gpshead date: 2025-05-19T08:10:23-07:00 summary: gh-131505: Move len boundary asse

[Python-checkins] Fix typo in get_stack_trace docstring (#134246)

2025-05-19 Thread pablogsal
https://github.com/python/cpython/commit/c4ad92e1555404b54490d1e370788509120675ed commit: c4ad92e1555404b54490d1e370788509120675ed branch: main author: László Kiss Kollár committer: pablogsal date: 2025-05-19T16:07:39Z summary: Fix typo in get_stack_trace docstring (#134246) files: M Modules/_r

[Python-checkins] [3.13] gh-122055: Clarify documentation for empty matches in RE (GH-133169) (GH-134218)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/55a7cb1206b2cc6e5fa98e3bfe8fcd67b4ed2de4 commit: 55a7cb1206b2cc6e5fa98e3bfe8fcd67b4ed2de4 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2025-05-19T16:49:29+03:00 summary: [3.1

[Python-checkins] gh-128639: Don't assume one thread in subinterpreter finalization (gh-128640)

2025-05-19 Thread ericsnowcurrently
https://github.com/python/cpython/commit/9859791f9e116c827468f307ac0770286c975c8b commit: 9859791f9e116c827468f307ac0770286c975c8b branch: main author: Peter Bierma committer: ericsnowcurrently date: 2025-05-19T10:24:08-06:00 summary: gh-128639: Don't assume one thread in subinterpreter finaliza

[Python-checkins] gh-133779: Revert Windows generation of pyconfig.h and go back to a static header. (GH-133966)

2025-05-19 Thread zooba
https://github.com/python/cpython/commit/986c3670285670558b6e6f77ff1507dfcc2c99fa commit: 986c3670285670558b6e6f77ff1507dfcc2c99fa branch: main author: Steve Dower committer: zooba date: 2025-05-19T11:35:22+01:00 summary: gh-133779: Revert Windows generation of pyconfig.h and go back to a static

[Python-checkins] GH-131798: Narrow the return type of isinstance for some known arguments in the JIT (GH-133172)

2025-05-19 Thread brandtbucher
https://github.com/python/cpython/commit/8d490b368766ee7b28d2ccf47704b1d4b5f1ea23 commit: 8d490b368766ee7b28d2ccf47704b1d4b5f1ea23 branch: main author: Tomas R. committer: brandtbucher date: 2025-05-19T13:19:24-04:00 summary: GH-131798: Narrow the return type of isinstance for some known argumen

[Python-checkins] gh-126883: Add check that timezone fields are in range for `datetime.fromisoformat` (#127242)

2025-05-19 Thread pganssle
https://github.com/python/cpython/commit/71c42b778dfc0831734bb7bc6121ffd44beae1d3 commit: 71c42b778dfc0831734bb7bc6121ffd44beae1d3 branch: main author: Semyon Moroz committer: pganssle <1377457+pgans...@users.noreply.github.com> date: 2025-05-19T14:07:11-04:00 summary: gh-126883: Add check that t

[Python-checkins] Simplify interp_look_up_id() (#134257)

2025-05-19 Thread vstinner
https://github.com/python/cpython/commit/e79f640eb698df7659c0ce81474d93bf222094c5 commit: e79f640eb698df7659c0ce81474d93bf222094c5 branch: main author: Victor Stinner committer: vstinner date: 2025-05-19T18:09:10Z summary: Simplify interp_look_up_id() (#134257) Don't use PyInterpreterState_GetI

[Python-checkins] gh-117596: Add more tests for os.path with invalid paths (GH-134189)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/871d26987533e81ab63af067e1fc96aa37a26bf7 commit: 871d26987533e81ab63af067e1fc96aa37a26bf7 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-05-19T21:17:58+03:00 summary: gh-117596: Add more tests for os.path with invalid paths (

[Python-checkins] Revert "gh-128639: Don't assume one thread in subinterpreter finalization (gh-128640)" (gh-134256)

2025-05-19 Thread ericsnowcurrently
https://github.com/python/cpython/commit/27bd08273ce822a4dbe0e73cca47441e99fd6f0d commit: 27bd08273ce822a4dbe0e73cca47441e99fd6f0d branch: main author: Peter Bierma committer: ericsnowcurrently date: 2025-05-19T12:22:05-06:00 summary: Revert "gh-128639: Don't assume one thread in subinterpreter

[Python-checkins] [3.13] gh-117596: Add more tests for os.path with invalid paths (GH-134189) (GH-134266)

2025-05-19 Thread serhiy-storchaka
https://github.com/python/cpython/commit/da506b25609b232226bdd1a3a85490738a9db53f commit: da506b25609b232226bdd1a3a85490738a9db53f branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2025-05-19T18:41:37Z summary: [3.13] gh

[Python-checkins] gh-80184: Set getattr(socket, "SOMAXCONN", 5) as the default queue size for TCPServer (GH-134249)

2025-05-19 Thread gpshead
https://github.com/python/cpython/commit/92f85ff3a07335e32a0e00a55b7b6aaf3657019b commit: 92f85ff3a07335e32a0e00a55b7b6aaf3657019b branch: main author: Sahil Shah committer: gpshead date: 2025-05-19T19:28:09Z summary: gh-80184: Set getattr(socket, "SOMAXCONN", 5) as the default queue size for T

[Python-checkins] GH-131798: Split CALL_LIST_APPEND into several uops (GH-134240)

2025-05-19 Thread diegorusso
https://github.com/python/cpython/commit/42d03f393313d8a228a45dad1d0897ea99f5ec89 commit: 42d03f393313d8a228a45dad1d0897ea99f5ec89 branch: main author: Diego Russo committer: diegorusso date: 2025-05-19T15:48:55-04:00 summary: GH-131798: Split CALL_LIST_APPEND into several uops (GH-134240) file

[Python-checkins] [3.14] gh-133779: Revert Windows generation of pyconfig.h and go back to a static header. (GH-133966)

2025-05-19 Thread zooba
https://github.com/python/cpython/commit/7686c752b308358bccd5e76e8516872e844a1b70 commit: 7686c752b308358bccd5e76e8516872e844a1b70 branch: 3.14 author: Steve Dower committer: zooba date: 2025-05-19T21:24:53+01:00 summary: [3.14] gh-133779: Revert Windows generation of pyconfig.h and go back to a

[Python-checkins] gh-88994: Change `datetime.datetime.now` to half-even rounding (#134258)

2025-05-19 Thread vstinner
https://github.com/python/cpython/commit/470941782f74288823b445120f6383914b659f23 commit: 470941782f74288823b445120f6383914b659f23 branch: main author: John Keith Hohm committer: vstinner date: 2025-05-19T22:48:55+02:00 summary: gh-88994: Change `datetime.datetime.now` to half-even rounding (#13

[Python-checkins] gh-134235: Import Autocomplete for Builtin Modules (GH-134277)

2025-05-19 Thread gpshead
https://github.com/python/cpython/commit/8421b03b16a4852a527256cb7cdce2ab2d318548 commit: 8421b03b16a4852a527256cb7cdce2ab2d318548 branch: main author: Tom Wang <85062819+tommix...@users.noreply.github.com> committer: gpshead date: 2025-05-19T14:21:30-07:00 summary: gh-134235: Import Autocomplete

[Python-checkins] [3.14] gh-134235: Import Autocomplete for Builtin Modules (GH-134277) (#134285)

2025-05-19 Thread gpshead
https://github.com/python/cpython/commit/7cbc3ea8fb1b0f1ac082466e4fc99b740357e675 commit: 7cbc3ea8fb1b0f1ac082466e4fc99b740357e675 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: gpshead date: 2025-05-19T21:46:50Z summary: [3.14] gh-134235:

[Python-checkins] gh-131178: remove runtime tests for `http.server` CLI (#134287)

2025-05-19 Thread picnixz
https://github.com/python/cpython/commit/1fbb0603a87669562e964cade336b3384778fbe0 commit: 1fbb0603a87669562e964cade336b3384778fbe0 branch: main author: Bénédikt Tran <10796600+picn...@users.noreply.github.com> committer: picnixz <10796600+picn...@users.noreply.github.com> date: 2025-05-19T21:59:14Z

[Python-checkins] GH-131798: Add _POP_CALL_TWO_LOAD_CONST_INLINE_BORROW (GH-134268)

2025-05-19 Thread brandtbucher
https://github.com/python/cpython/commit/a7f317d7300235d9efff5a0350b1bae14720d42f commit: a7f317d7300235d9efff5a0350b1bae14720d42f branch: main author: Tomas R. committer: brandtbucher date: 2025-05-19T18:00:53-04:00 summary: GH-131798: Add _POP_CALL_TWO_LOAD_CONST_INLINE_BORROW (GH-134268) fil

[Python-checkins] gh-132983: Add zstd version info to `test.pythoninfo` (#134230)

2025-05-19 Thread vstinner
https://github.com/python/cpython/commit/46d7c114d8cd25e5135bcdf2ea799eea43a41a67 commit: 46d7c114d8cd25e5135bcdf2ea799eea43a41a67 branch: main author: Stan Ulbrych <89152624+stanfromirel...@users.noreply.github.com> committer: vstinner date: 2025-05-20T00:06:04+02:00 summary: gh-132983: Add zstd

[Python-checkins] gh-134201: Expand explanation of Base85 encodings in base64 docs (#134288)

2025-05-19 Thread CAM-Gerlach
https://github.com/python/cpython/commit/66aaad61037785639aec393be7618cb54b1372dc commit: 66aaad61037785639aec393be7618cb54b1372dc branch: main author: Alek Binion committer: CAM-Gerlach date: 2025-05-19T18:59:06-05:00 summary: gh-134201: Expand explanation of Base85 encodings in base64 docs (#1

[Python-checkins] [3.14] gh-134201: Expand explanation of Base85 encodings in base64 docs (GH-134288) (#134298)

2025-05-19 Thread CAM-Gerlach
https://github.com/python/cpython/commit/e20f05f53fe6a54435923105329c9de24a10fd2e commit: e20f05f53fe6a54435923105329c9de24a10fd2e branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: CAM-Gerlach date: 2025-05-20T00:05:26Z summary: [3.14] gh-1342

[Python-checkins] [3.13] gh-134201: Expand explanation of Base85 encodings in base64 docs (GH-134288) (#134297)

2025-05-19 Thread CAM-Gerlach
https://github.com/python/cpython/commit/edbde92a12b6d35f3089bb9683fd68f21c912285 commit: edbde92a12b6d35f3089bb9683fd68f21c912285 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: CAM-Gerlach date: 2025-05-20T00:05:26Z summary: [3.13] gh-1342

[Python-checkins] gh-133940: test_strftime incorrectly calculates expected week (GH-134281)

2025-05-19 Thread gpshead
https://github.com/python/cpython/commit/e3dda8f81832008adf19906004f0cd53de95dd0b commit: e3dda8f81832008adf19906004f0cd53de95dd0b branch: main author: Gustaf <79180496+gg...@users.noreply.github.com> committer: gpshead date: 2025-05-19T17:54:48-07:00 summary: gh-133940: test_strftime incorrectly

[Python-checkins] [3.13] gh-133940: test_strftime incorrectly calculates expected week (GH-134281) (#134302)

2025-05-19 Thread gpshead
https://github.com/python/cpython/commit/783675e73f78ace7dc9fc318726f726de2a15855 commit: 783675e73f78ace7dc9fc318726f726de2a15855 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: gpshead date: 2025-05-20T01:17:22Z summary: [3.13] gh-133940:

[Python-checkins] [3.14] gh-132983: Call Py_XDECREF rather than PyObject_GC_Del in failed __new__ (GH-133962) (#134305)

2025-05-19 Thread AA-Turner
https://github.com/python/cpython/commit/07a2033fcfabcbfb28450f3106b396b474561e57 commit: 07a2033fcfabcbfb28450f3106b396b474561e57 branch: 3.14 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com> date: 202