[Python-checkins] gh-120754: Fix memory leak in FileIO.__init__() (#124225)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/43cd7aa8cd88624f7211e47b98bc1e8e63e7660f commit: 43cd7aa8cd88624f7211e47b98bc1e8e63e7660f branch: main author: Victor Stinner committer: vstinner date: 2024-09-19T00:11:50+02:00 summary: gh-120754: Fix memory leak in FileIO.__init__() (#124225) Free 'sel

[Python-checkins] gh-124212: Fix undefined variable in error message in venv (GH-124211)

2024-09-18 Thread zooba
https://github.com/python/cpython/commit/ea7fe1fe2e162f2375562467ad834c6224a62daf commit: ea7fe1fe2e162f2375562467ad834c6224a62daf branch: main author: Jacek committer: zooba date: 2024-09-18T22:05:18Z summary: gh-124212: Fix undefined variable in error message in venv (GH-124211) files: A Misc

[Python-checkins] [3.12] gh-124083: Skip test_signal.test_strsignal() on NetBSD (GH-124084) (#124224)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/a82a2f1597cdd2f791d0e39fb4fd43f38b6b4186 commit: a82a2f1597cdd2f791d0e39fb4fd43f38b6b4186 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: vstinner date: 2024-09-18T21:47:18Z summary: [3.12] gh-124083:

[Python-checkins] gh-124083: Skip test_signal.test_strsignal() on NetBSD (#124084)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/36682c091407dc9c7e750c22fb71e62466952662 commit: 36682c091407dc9c7e750c22fb71e62466952662 branch: main author: Furkan Onder committer: vstinner date: 2024-09-18T21:22:00Z summary: gh-124083: Skip test_signal.test_strsignal() on NetBSD (#124084) Skip test

[Python-checkins] [3.12] Fix `make htmllive` target (GH-124222)

2024-09-18 Thread zware
https://github.com/python/cpython/commit/2216c52828d96f19226f69efadff817ec0e36dcd commit: 2216c52828d96f19226f69efadff817ec0e36dcd branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: zware date: 2024-09-18T16:12:17-05:00 summary: [3.12] Fix `mak

[Python-checkins] Fix `make htmllive` target (GH-124219)

2024-09-18 Thread zware
https://github.com/python/cpython/commit/9a6e2336e4b54fc13064b77826a67b03b3b45133 commit: 9a6e2336e4b54fc13064b77826a67b03b3b45133 branch: main author: Zachary Ware committer: zware date: 2024-09-18T21:02:20Z summary: Fix `make htmllive` target (GH-124219) Allow `make -C Doc htmllive` to work w

[Python-checkins] gh-116022: Improve `repr()` of AST nodes (#117046)

2024-09-18 Thread JelleZijlstra
https://github.com/python/cpython/commit/21d2a9ab2f4dcbf1be462d3b7f7a231a46bc1cb7 commit: 21d2a9ab2f4dcbf1be462d3b7f7a231a46bc1cb7 branch: main author: Tomas R committer: JelleZijlstra date: 2024-09-18T10:28:22-07:00 summary: gh-116022: Improve `repr()` of AST nodes (#117046) Co-authored-by: AN

[Python-checkins] gh-124064: Fix -Wconversion warnings in Parser/string_parser.c (#124204)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/f9fa6ba4f8d90ae12bc1f6a792d66903bb169ba8 commit: f9fa6ba4f8d90ae12bc1f6a792d66903bb169ba8 branch: main author: Victor Stinner committer: vstinner date: 2024-09-18T19:10:56+02:00 summary: gh-124064: Fix -Wconversion warnings in Parser/string_parser.c (#124

[Python-checkins] gh-122145: Handle an empty AST body when reporting tracebacks (#122161)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/5cd50cb6eb28e525f0c838e049e900ea982a5a23 commit: 5cd50cb6eb28e525f0c838e049e900ea982a5a23 branch: main author: Bénédikt Tran <[email protected]> committer: vstinner date: 2024-09-18T18:42:33+02:00 summary: gh-122145: Handle an empty

[Python-checkins] gh-120754: Refactor I/O modules to stash whole stat result rather than individual members (#123412)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/8b6c7c7877c26f0201f37f69d4db2f35d7abd760 commit: 8b6c7c7877c26f0201f37f69d4db2f35d7abd760 branch: main author: Cody Maloney committer: vstinner date: 2024-09-18T17:47:57+02:00 summary: gh-120754: Refactor I/O modules to stash whole stat result rather than

[Python-checkins] gh-124206: Fix calling get_annotate_function() on static types (#124208)

2024-09-18 Thread JelleZijlstra
https://github.com/python/cpython/commit/96f619faa74a8a32c2c297833cdeb0393c0b6b13 commit: 96f619faa74a8a32c2c297833cdeb0393c0b6b13 branch: main author: Jelle Zijlstra committer: JelleZijlstra date: 2024-09-18T08:39:22-07:00 summary: gh-124206: Fix calling get_annotate_function() on static types

[Python-checkins] gh-102511: Change the `os.path.splitroot` param name from `path` back to `p` (GH-124097)

2024-09-18 Thread zooba
https://github.com/python/cpython/commit/3b6bfa77aa4da2ce1f3a15e39831f8b85882698c commit: 3b6bfa77aa4da2ce1f3a15e39831f8b85882698c branch: main author: sobolevn committer: zooba date: 2024-09-18T15:17:32+01:00 summary: gh-102511: Change the `os.path.splitroot` param name from `path` back to `p`

[Python-checkins] gh-117505: Run ensurepip in isolated env in Windows installer (GH-118257)

2024-09-18 Thread zooba
https://github.com/python/cpython/commit/1494d9563f72e5ac14e55d8df3b5cb9391ccef6f commit: 1494d9563f72e5ac14e55d8df3b5cb9391ccef6f branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: zooba date: 2024-09-18T15:16:29+01:00 summary: gh-117505: Run

[Python-checkins] test: fix _is_perf_version_at_least typo (#124199)

2024-09-18 Thread pablogsal
https://github.com/python/cpython/commit/0c4884d8aa51df2dd013c3e78fcc3f2077d743c3 commit: 0c4884d8aa51df2dd013c3e78fcc3f2077d743c3 branch: main author: Sam James committer: pablogsal date: 2024-09-18T13:44:32+01:00 summary: test: fix _is_perf_version_at_least typo (#124199) files: M Lib/test/te

[Python-checkins] gh-118915: Add/fix docs entries for some new 3.13 C API (GH-124134)

2024-09-18 Thread encukou
https://github.com/python/cpython/commit/32119fc377a4d9df524a7bac02b6922a990361dd commit: 32119fc377a4d9df524a7bac02b6922a990361dd branch: main author: Petr Viktorin committer: encukou date: 2024-09-18T14:15:43+02:00 summary: gh-118915: Add/fix docs entries for some new 3.13 C API (GH-124134) f

[Python-checkins] gh-119771: Set errno on overflows in _Py_c_pow() (#120256)

2024-09-18 Thread vstinner
https://github.com/python/cpython/commit/8a284e189673582e262744618f293f9901a32e49 commit: 8a284e189673582e262744618f293f9901a32e49 branch: main author: Sergey B Kirpichev committer: vstinner date: 2024-09-18T10:39:11+02:00 summary: gh-119771: Set errno on overflows in _Py_c_pow() (#120256) Befo

[Python-checkins] gh-124190: Ignore files directories check warning tooling (#124193)

2024-09-18 Thread hugovk
https://github.com/python/cpython/commit/81480e6edb34774d783d018d1f0e61ab5c3f0a9a commit: 81480e6edb34774d783d018d1f0e61ab5c3f0a9a branch: main author: Nate Ohlson committer: hugovk <[email protected]> date: 2024-09-18T10:49:43+03:00 summary: gh-124190: Ignore files director

[Python-checkins] gh-124153: Implement `PyType_GetBaseByToken()` and `Py_tp_token` slot (GH-124163)

2024-09-18 Thread encukou
https://github.com/python/cpython/commit/646f16bdeed6ebe1069e1d64886fbaa26edac75c commit: 646f16bdeed6ebe1069e1d64886fbaa26edac75c branch: main author: neonene <[email protected]> committer: encukou date: 2024-09-18T09:18:19+02:00 summary: gh-124153: Implement `PyType_GetB