[Python-checkins] [3.12] gh-118476: Fix corner cases in islice() rough equivalent. (Gh-118559) (#118587)

2024-05-04 Thread rhettinger
https://github.com/python/cpython/commit/68316a04f3d298fb9ea446d6825713fa2f36ef09 commit: 68316a04f3d298fb9ea446d6825713fa2f36ef09 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: rhettinger date: 2024-05-05T06:49:19Z summary: [3.12] gh-11847

[Python-checkins] gh-118476: Fix corner cases in islice() rough equivalent. (Gh-118559)

2024-05-04 Thread rhettinger
https://github.com/python/cpython/commit/c7c9b913c01afb8d2ff4048f82155969f7ef75b1 commit: c7c9b913c01afb8d2ff4048f82155969f7ef75b1 branch: main author: Raymond Hettinger committer: rhettinger date: 2024-05-05T01:42:30-05:00 summary: gh-118476: Fix corner cases in islice() rough equivalent. (Gh-1

[Python-checkins] [3.12] gh-118455: Fix mangle_from_ default value in email.policy.Policy.__doc__ (GH-118456) (#118586)

2024-05-04 Thread sobolevn
https://github.com/python/cpython/commit/d629819f60b84583714595e5a2c1f4ad69d1ccc1 commit: d629819f60b84583714595e5a2c1f4ad69d1ccc1 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: sobolevn date: 2024-05-05T06:35:11Z summary: [3.12] gh-118455:

[Python-checkins] Minor edit: Simplify and tighten the distribution test (gh-118585)

2024-05-04 Thread rhettinger
https://github.com/python/cpython/commit/fd0ea63f82bf9b8f766ea40cfa5befa653461e8a commit: fd0ea63f82bf9b8f766ea40cfa5befa653461e8a branch: main author: Raymond Hettinger committer: rhettinger date: 2024-05-05T01:35:06-05:00 summary: Minor edit: Simplify and tighten the distribution test (gh-1185

[Python-checkins] [3.12] gh-118164: str(10**10000) hangs if the C _decimal module is missing (GH-118503) (GH-118584)

2024-05-04 Thread serhiy-storchaka
https://github.com/python/cpython/commit/0c605244a8f91b96b87eb5000bfe9e64428b8084 commit: 0c605244a8f91b96b87eb5000bfe9e64428b8084 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka date: 2024-05-05T09:34:43+03:00 summary: [3.1

[Python-checkins] gh-118131: Command-line interface for the `random` module (#118132)

2024-05-04 Thread hugovk
https://github.com/python/cpython/commit/3b32575ed6b0905f434f9395d26293c0ae928032 commit: 3b32575ed6b0905f434f9395d26293c0ae928032 branch: main author: Hugo van Kemenade <[email protected]> committer: hugovk <[email protected]> date: 2024-05-05T06:30:03Z

[Python-checkins] gh-118455: Fix mangle_from_ default value in email.policy.Policy.__doc__ (#118456)

2024-05-04 Thread sobolevn
https://github.com/python/cpython/commit/fed8d73fde779fca41026398376cb3038e9b2b5f commit: fed8d73fde779fca41026398376cb3038e9b2b5f branch: main author: wim glenn committer: sobolevn date: 2024-05-05T09:18:04+03:00 summary: gh-118455: Fix mangle_from_ default value in email.policy.Policy.__doc__

[Python-checkins] gh-118164: Break a loop between _pydecimal and _pylong and optimize int to str conversion (GH-118483)

2024-05-04 Thread serhiy-storchaka
https://github.com/python/cpython/commit/711c80bfca5dd17cb7c6ec26f0e44848b33aec04 commit: 711c80bfca5dd17cb7c6ec26f0e44848b33aec04 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-05T08:20:06+03:00 summary: gh-118164: Break a loop between _pydecimal and _pylong and

[Python-checkins] gh-74929: Remove undesirable DECREF in PEP 667 implementation (#118583)

2024-05-04 Thread gvanrossum
https://github.com/python/cpython/commit/5dd36732c850084ce262b7869ed90d73a281296a commit: 5dd36732c850084ce262b7869ed90d73a281296a branch: main author: Tian Gao committer: gvanrossum date: 2024-05-05T03:06:42Z summary: gh-74929: Remove undesirable DECREF in PEP 667 implementation (#118583) With

[Python-checkins] gh-118164: str(10**10000) hangs if the C _decimal module is missing (#118503)

2024-05-04 Thread tim-one
https://github.com/python/cpython/commit/999f0c512281995fb61a0d9eda075fd846e8c505 commit: 999f0c512281995fb61a0d9eda075fd846e8c505 branch: main author: Tim Peters committer: tim-one date: 2024-05-04T18:22:33-05:00 summary: gh-118164: str(10**1) hangs if the C _decimal module is missing (#118

[Python-checkins] gh-109617: fix ncurses incompatibility on macOS with Xcode 15 (#111258)

2024-05-04 Thread ambv
https://github.com/python/cpython/commit/08d169f14a715ceaae3d563ced2ff1633d009359 commit: 08d169f14a715ceaae3d563ced2ff1633d009359 branch: main author: Davide Rizzo committer: ambv date: 2024-05-04T23:41:47+02:00 summary: gh-109617: fix ncurses incompatibility on macOS with Xcode 15 (#111258) C

[Python-checkins] gh-117953: Track Extra Details in Global Extensions Cache (gh-118532)

2024-05-04 Thread ericsnowcurrently
https://github.com/python/cpython/commit/291cfa454b9c5b677c955aaf53fab91f0186b6fa commit: 291cfa454b9c5b677c955aaf53fab91f0186b6fa branch: main author: Eric Snow committer: ericsnowcurrently date: 2024-05-04T21:24:02Z summary: gh-117953: Track Extra Details in Global Extensions Cache (gh-118532)

[Python-checkins] gh-117139: Fix missing semicolon (GH-118573)

2024-05-04 Thread Fidget-Spinner
https://github.com/python/cpython/commit/978fba58aef347de4a1376e525df2dacc7b2fff3 commit: 978fba58aef347de4a1376e525df2dacc7b2fff3 branch: main author: Ken Jin committer: Fidget-Spinner date: 2024-05-04T15:45:49Z summary: gh-117139: Fix missing semicolon (GH-118573) files: M Include/internal/py

[Python-checkins] [3.12] gh-118569: Add a test for dynamic PEP695 classes (GH-118570) (#118574)

2024-05-04 Thread sobolevn
https://github.com/python/cpython/commit/53e8bdd1e6434a06ac67ae0dd250d1abf7d2dc4c commit: 53e8bdd1e6434a06ac67ae0dd250d1abf7d2dc4c branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: sobolevn date: 2024-05-04T15:26:30Z summary: [3.12] gh-118569:

[Python-checkins] gh-118569: Add a test for dynamic PEP695 classes (#118570)

2024-05-04 Thread sobolevn
https://github.com/python/cpython/commit/5f547585fa56c94c5d836b5313a7200f4937ebc4 commit: 5f547585fa56c94c5d836b5313a7200f4937ebc4 branch: main author: Nikita Sobolev committer: sobolevn date: 2024-05-04T18:08:38+03:00 summary: gh-118569: Add a test for dynamic PEP695 classes (#118570) files: M

[Python-checkins] GH-111744: Support opcode events in bdb (GH-111834)

2024-05-04 Thread brandtbucher
https://github.com/python/cpython/commit/f34e965e52b9bdf157b829371870edfde45b80bf commit: f34e965e52b9bdf157b829371870edfde45b80bf branch: main author: Tian Gao committer: brandtbucher date: 2024-05-04T07:44:49-07:00 summary: GH-111744: Support opcode events in bdb (GH-111834) files: A Misc/NEW

[Python-checkins] build(deps): bump hypothesis from 6.100.0 to 6.100.2 in /Tools (#118462)

2024-05-04 Thread AlexWaygood
https://github.com/python/cpython/commit/f6b5d3bdc83f8daca05e8b379190587a236585ef commit: f6b5d3bdc83f8daca05e8b379190587a236585ef branch: main author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> committer: AlexWaygood date: 2024-05-04T14:47:48+01:00 summary: build(deps):

[Python-checkins] fix comment typo in importlib (#118567)

2024-05-04 Thread AlexWaygood
https://github.com/python/cpython/commit/d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0 commit: d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0 branch: main author: wim glenn committer: AlexWaygood date: 2024-05-04T14:46:32+01:00 summary: fix comment typo in importlib (#118567) files: M Lib/importlib/_boots

[Python-checkins] gh-74929: Implement PEP 667 (GH-115153)

2024-05-04 Thread markshannon
https://github.com/python/cpython/commit/b034f14a4b6e9197d3926046721b8b4b4b4f5b3d commit: b034f14a4b6e9197d3926046721b8b4b4b4f5b3d branch: main author: Tian Gao committer: markshannon date: 2024-05-04T12:12:10+01:00 summary: gh-74929: Implement PEP 667 (GH-115153) files: A Misc/NEWS.d/next/Core

[Python-checkins] GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 support of calls. (GH-118322)

2024-05-04 Thread markshannon
https://github.com/python/cpython/commit/1ab6356ebec25f216a0eddbd81225abcb93f2d55 commit: 1ab6356ebec25f216a0eddbd81225abcb93f2d55 branch: main author: Mark Shannon committer: markshannon date: 2024-05-04T12:11:11+01:00 summary: GH-118095: Use broader specializations of CALL in tier 1, for bette

[Python-checkins] gh-113081: Print colorized exception just like built-in traceback in pdb (#113082)

2024-05-04 Thread pablogsal
https://github.com/python/cpython/commit/00da0afa0d98ce1fae67f7258c7f3db2b81a07e7 commit: 00da0afa0d98ce1fae67f7258c7f3db2b81a07e7 branch: main author: Tian Gao committer: pablogsal date: 2024-05-04T12:26:40+02:00 summary: gh-113081: Print colorized exception just like built-in traceback in pdb

[Python-checkins] gh-111997: C-API for signalling monitoring events (#116413)

2024-05-04 Thread iritkatriel
https://github.com/python/cpython/commit/85af78996117dbe8ad45716633a3d6c39ff7bab2 commit: 85af78996117dbe8ad45716633a3d6c39ff7bab2 branch: main author: Irit Katriel <[email protected]> committer: iritkatriel <[email protected]> date: 2024-05-04T

[Python-checkins] GH-113464: Remove the extra jump via `_SIDE_EXIT` in `_EXIT_TRACE` (GH-118545)

2024-05-04 Thread markshannon
https://github.com/python/cpython/commit/da2cfc4cb6b756b819b45bf34dd735c27b74d803 commit: da2cfc4cb6b756b819b45bf34dd735c27b74d803 branch: main author: Mark Shannon committer: markshannon date: 2024-05-04T08:50:24+01:00 summary: GH-113464: Remove the extra jump via `_SIDE_EXIT` in `_EXIT_TRACE`

[Python-checkins] gh-110850: Use _PyDeadline_Get() in EnterNonRecursiveMutex() (#118556)

2024-05-04 Thread vstinner
https://github.com/python/cpython/commit/0b7814e0b638631fa2f5c81bcbab7b94064948d7 commit: 0b7814e0b638631fa2f5c81bcbab7b94064948d7 branch: main author: Victor Stinner committer: vstinner date: 2024-05-04T09:39:58+02:00 summary: gh-110850: Use _PyDeadline_Get() in EnterNonRecursiveMutex() (#11855