[Python-checkins] [3.13] gh-123110: correct note about _Bool in the struct module docs (GH-123111) (#123126)

2024-08-19 Thread kumaraditya303
https://github.com/python/cpython/commit/cf444d851555ec77ad0a8e9266a09958398da689 commit: cf444d851555ec77ad0a8e9266a09958398da689 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-19T13:00:54+05:30 summary:

[Python-checkins] [3.12] gh-123110: correct note about _Bool in the struct module docs (GH-123111) (#123127)

2024-08-19 Thread kumaraditya303
https://github.com/python/cpython/commit/8edfa0b0b4ae4235bb3262d952c23e7581516d4f commit: 8edfa0b0b4ae4235bb3262d952c23e7581516d4f branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-19T13:01:12+05:30 summary:

[Python-checkins] gh-122081: fixed crash in decimal.IEEEContext() (#122082)

2024-08-19 Thread kumaraditya303
https://github.com/python/cpython/commit/b9e10d1a0fc4d8428d4b36eb127570a832c26b6f commit: b9e10d1a0fc4d8428d4b36eb127570a832c26b6f branch: main author: Sergey B Kirpichev committer: kumaraditya303 date: 2024-08-19T07:51:38Z summary: gh-122081: fixed crash in decimal.IEEEContext() (#122082

[Python-checkins] [3.13] gh-122081: fixed crash in decimal.IEEEContext() (GH-122082) (#123136)

2024-08-19 Thread kumaraditya303
https://github.com/python/cpython/commit/032b6467fab8dc9b9bd97a418c15fe388f4a18b9 commit: 032b6467fab8dc9b9bd97a418c15fe388f4a18b9 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-19T14:14:11+05:30 summary:

[Python-checkins] Fix typo mentioning threads instead of tasks (#123203)

2024-08-23 Thread kumaraditya303
https://github.com/python/cpython/commit/58fdb169c8a93925541fecc74ba73c566147f2ca commit: 58fdb169c8a93925541fecc74ba73c566147f2ca branch: main author: Kevin Evans committer: kumaraditya303 date: 2024-08-23T21:54:12+05:30 summary: Fix typo mentioning threads instead of tasks (#123203) files: M

[Python-checkins] gh-123243: Fix reference leak in `_decimal` (#123244)

2024-08-23 Thread kumaraditya303
https://github.com/python/cpython/commit/5ff638f1b53587b9f912a18fc776a2a141fd7bed commit: 5ff638f1b53587b9f912a18fc776a2a141fd7bed branch: main author: neonene <[email protected]> committer: kumaraditya303 date: 2024-08-24T09:37:01+05:30 summary: gh-123243: Fix ref

[Python-checkins] [3.13] gh-123243: Fix reference leak in `_decimal` (GH-123244) (#123280)

2024-08-23 Thread kumaraditya303
https://github.com/python/cpython/commit/a65fe07db4aa57b4e67f2f9e914db7ea281f127f commit: a65fe07db4aa57b4e67f2f9e914db7ea281f127f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-24T04:33:49Z summary: [3.

[Python-checkins] gh-123089: Make weakref.WeakSet safe against concurrent mutations while it is being iterated (#123279)

2024-08-27 Thread kumaraditya303
https://github.com/python/cpython/commit/03f5abf15a20f6e623282a393bc2a0affac69bb0 commit: 03f5abf15a20f6e623282a393bc2a0affac69bb0 branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-08-27T13:04:03Z summary: gh-123089: Make weakref.WeakSet safe against concurrent mutations

[Python-checkins] gH-80788: remove old weakset workaround for thread safety (#123388)

2024-08-27 Thread kumaraditya303
https://github.com/python/cpython/commit/460ee5b994335994d4b5186c08f44e775b3e55fa commit: 460ee5b994335994d4b5186c08f44e775b3e55fa branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-08-27T19:12:44+05:30 summary: gH-80788: remove old weakset workaround for thread safety

[Python-checkins] gh-123919: Fix null handling in `_freeze_module.c` (#123920)

2024-09-11 Thread kumaraditya303
https://github.com/python/cpython/commit/c8d1dbef5b770b647aa7ff45fd5b269bc7629d0b commit: c8d1dbef5b770b647aa7ff45fd5b269bc7629d0b branch: main author: sobolevn committer: kumaraditya303 date: 2024-09-11T19:07:35+05:30 summary: gh-123919: Fix null handling in `_freeze_module.c` (#123920) files

[Python-checkins] [3.12] gh-123919: Fix null handling in `_freeze_module.c` (GH-123920) (#123949)

2024-09-11 Thread kumaraditya303
https://github.com/python/cpython/commit/cbfeb6a7fe89101e24ba7f61b5d42e12b79f1c9d commit: cbfeb6a7fe89101e24ba7f61b5d42e12b79f1c9d branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-09-11T13:56:00Z summary: [3.

[Python-checkins] gh-120121: Add InvalidStateError to concurrent.futures.__all__ (#120123)

2024-06-08 Thread kumaraditya303
https://github.com/python/cpython/commit/5d59b870effa0f576acf7264cfcbfca2b36e34e3 commit: 5d59b870effa0f576acf7264cfcbfca2b36e34e3 branch: main author: AN Long committer: kumaraditya303 date: 2024-06-08T21:41:19+05:30 summary: gh-120121: Add InvalidStateError to concurrent.futures.__all__

[Python-checkins] [3.12] gh-120121: Add InvalidStateError to concurrent.futures.__all__ (GH-120123) (#120274)

2024-06-08 Thread kumaraditya303
https://github.com/python/cpython/commit/58657d0dc160b8dea60cb5e5a51c5c925995cc36 commit: 58657d0dc160b8dea60cb5e5a51c5c925995cc36 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-08T16:28:21Z summary: [3.

[Python-checkins] [3.13] gh-120121: Add InvalidStateError to concurrent.futures.__all__ (GH-120123) (#120273)

2024-06-08 Thread kumaraditya303
https://github.com/python/cpython/commit/4bca4e58af2e8cf6ce78151d3ae73bd254a4e64c commit: 4bca4e58af2e8cf6ce78151d3ae73bd254a4e64c branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-08T16:35:10Z summary: [3.

[Python-checkins] gh-120568: fix file leak in PyUnstable_CopyPerfMapFile (#120569)

2024-06-16 Thread kumaraditya303
https://github.com/python/cpython/commit/92cebaa4911786683e87841bf7788351e7595ac2 commit: 92cebaa4911786683e87841bf7788351e7595ac2 branch: main author: Carson Radtke committer: kumaraditya303 date: 2024-06-16T17:51:52Z summary: gh-120568: fix file leak in PyUnstable_CopyPerfMapFile (#120569

[Python-checkins] gh-114091: Reword error message for unawaitable types (#114090)

2024-06-17 Thread kumaraditya303
https://github.com/python/cpython/commit/2c7209a3bdf81a289ccd6b80a77497cfcd5732de commit: 2c7209a3bdf81a289ccd6b80a77497cfcd5732de branch: main author: Steele Farnsworth committer: kumaraditya303 date: 2024-06-17T20:18:17+05:30 summary: gh-114091: Reword error message for unawaitable types

[Python-checkins] gh-115649: Copy the filename into main interpreter before intern in import.c (#120315)

2024-06-17 Thread kumaraditya303
https://github.com/python/cpython/commit/28140d1f2da1766bfbb83f58779f15255c73c871 commit: 28140d1f2da1766bfbb83f58779f15255c73c871 branch: main author: AN Long committer: kumaraditya303 date: 2024-06-17T21:27:22+05:30 summary: gh-115649: Copy the filename into main interpreter before intern in

[Python-checkins] fix enum doc typo (#120091)

2024-06-17 Thread kumaraditya303
https://github.com/python/cpython/commit/0506f75c53ce0895408050ededcfb66bc07eb19b commit: 0506f75c53ce0895408050ededcfb66bc07eb19b branch: main author: Saul Pwanson committer: kumaraditya303 date: 2024-06-17T21:31:15+05:30 summary: fix enum doc typo (#120091) files: M Doc/library/enum.rst

[Python-checkins] [3.13] gh-115649: Copy the filename into main interpreter before intern in import.c (GH-120315) (#120652)

2024-06-17 Thread kumaraditya303
https://github.com/python/cpython/commit/9172bc35c669b7706d7122d4f0a90f065700a474 commit: 9172bc35c669b7706d7122d4f0a90f065700a474 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-17T22:30:26+05:30 summary:

[Python-checkins] gh-119960: Add information about regex flags in re module functions (#119978)

2024-06-19 Thread kumaraditya303
https://github.com/python/cpython/commit/a86e6255c371e14cab8680dee979a7393b339ce5 commit: a86e6255c371e14cab8680dee979a7393b339ce5 branch: main author: Awbert <[email protected]> committer: kumaraditya303 date: 2024-06-19T09:42:01Z summary: gh-119960: Add infor

[Python-checkins] [3.13] gh-119506: fix `_io.TextIOWrapper.write()` write during flush (GH-119507) (#119964)

2024-06-19 Thread kumaraditya303
https://github.com/python/cpython/commit/9be94f9ce6dbc944e9807534664dbde28077f737 commit: 9be94f9ce6dbc944e9807534664dbde28077f737 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-19T10:11:07Z summary: [3.

[Python-checkins] [3.12] gh-119506: fix `_io.TextIOWrapper.write()` write during flush (GH-119507) (#119965)

2024-06-19 Thread kumaraditya303
https://github.com/python/cpython/commit/cde976d85c6632a908dde1ff8695ac5cafd879b6 commit: cde976d85c6632a908dde1ff8695ac5cafd879b6 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-19T10:23:29Z summary: [3.

[Python-checkins] [3.13] gh-119960: Add information about regex flags in re module functions (GH-119978) (#120730)

2024-06-19 Thread kumaraditya303
https://github.com/python/cpython/commit/c598e61a223edcd9a7eecf823f667e2e810aba53 commit: c598e61a223edcd9a7eecf823f667e2e810aba53 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-19T16:00:34+05:30 summary:

[Python-checkins] GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatcher from asyncio (#120805)

2024-06-20 Thread kumaraditya303
https://github.com/python/cpython/commit/733dac01b0dc3047efc9027dba177d7116e47c50 commit: 733dac01b0dc3047efc9027dba177d7116e47c50 branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-21T10:23:10+05:30 summary: GH-120804: Remove SafeChildWatcher, FastChildWatcher and

[Python-checkins] gh-120773: document introspective attributes of an async generator object in the inspect module (#120778)

2024-06-21 Thread kumaraditya303
https://github.com/python/cpython/commit/83d3d7aace32b8536f552f78dd29610344f13160 commit: 83d3d7aace32b8536f552f78dd29610344f13160 branch: main author: blhsing committer: kumaraditya303 date: 2024-06-21T10:55:36Z summary: gh-120773: document introspective attributes of an async generator object

[Python-checkins] [3.13] gh-120773: document introspective attributes of an async generator object in the inspect module (GH-120778) (#120827)

2024-06-21 Thread kumaraditya303
https://github.com/python/cpython/commit/abdbf337d4641cf27d39fae206c2a08d27f6fcd9 commit: abdbf337d4641cf27d39fae206c2a08d27f6fcd9 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-21T16:58:46+05:30 summary:

[Python-checkins] [3.12] gh-120773: document introspective attributes of an async generator object in the inspect module (GH-120778) (#120828)

2024-06-21 Thread kumaraditya303
https://github.com/python/cpython/commit/9bbb91c066d5aa3d9a1c5ac5ac72520b46e5e06f commit: 9bbb91c066d5aa3d9a1c5ac5ac72520b46e5e06f branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-21T16:58:58+05:30 summary:

[Python-checkins] gh-120782: Update internal type cache when reloading datetime (#120829)

2024-06-21 Thread kumaraditya303
https://github.com/python/cpython/commit/a81d434c06335b0989ba83666ec7076b9d9d4e1e commit: a81d434c06335b0989ba83666ec7076b9d9d4e1e branch: main author: neonene <[email protected]> committer: kumaraditya303 date: 2024-06-21T22:39:33+05:30 summary: gh-120782:

[Python-checkins] gh-120811: Fix reference leak upon `_PyContext_Exit` failure (#120812)

2024-06-21 Thread kumaraditya303
https://github.com/python/cpython/commit/aed31beca9a54b85a1392631a48da80602210f18 commit: aed31beca9a54b85a1392631a48da80602210f18 branch: main author: Peter committer: kumaraditya303 date: 2024-06-21T17:28:19Z summary: gh-120811: Fix reference leak upon `_PyContext_Exit` failure (#120812) Co

[Python-checkins] [3.12] gh-120811: Fix reference leak upon `_PyContext_Exit` failure (GH-120812) (#120844)

2024-06-22 Thread kumaraditya303
https://github.com/python/cpython/commit/b1bccab588b978220f16eedf839af70cb8bb76ea commit: b1bccab588b978220f16eedf839af70cb8bb76ea branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-22T16:44:31+05:30 summary:

[Python-checkins] [3.13] gh-120811: Fix reference leak upon `_PyContext_Exit` failure (GH-120812) (#120843)

2024-06-22 Thread kumaraditya303
https://github.com/python/cpython/commit/a860b1d60b8e3d09c58daf6996a38606f407a009 commit: a860b1d60b8e3d09c58daf6996a38606f407a009 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-22T16:44:46+05:30 summary:

[Python-checkins] GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#120818)

2024-06-22 Thread kumaraditya303
https://github.com/python/cpython/commit/96ead91f0f0db59a942b8b34da9cc980c05588a2 commit: 96ead91f0f0db59a942b8b34da9cc980c05588a2 branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-23T09:53:23+05:30 summary: GH-120804: Remove `get_child_watcher` and `set_child_watcher

[Python-checkins] gh-120896: Fix typo in version changed note of `urllib.parse.urlparse()` (#120898)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/b6fa8fe86a6f4d02c263682716a91285a94024fc commit: b6fa8fe86a6f4d02c263682716a91285a94024fc branch: main author: Nice Zombies committer: kumaraditya303 date: 2024-06-23T18:00:23+05:30 summary: gh-120896: Fix typo in version changed note of

[Python-checkins] [3.12] gh-119003: Clarify slice assignments (GH-119935) (#120848)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/2b2530540f264926b854eb58c31ffe5dfb04895a commit: 2b2530540f264926b854eb58c31ffe5dfb04895a branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-23T18:04:25+05:30 summary:

[Python-checkins] [3.13] gh-119003: Clarify slice assignments (GH-119935) (#120847)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/bf7aac3d25dc396128d56b699ca269c89975e41f commit: bf7aac3d25dc396128d56b699ca269c89975e41f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-23T18:04:48+05:30 summary:

[Python-checkins] [3.12] gh-120896: Fix typo in version changed note of `urllib.parse.urlparse()` (GH-120898) (#120903)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/2d6d862706a630d5f043d2c01ab90e8ec9fbce41 commit: 2d6d862706a630d5f043d2c01ab90e8ec9fbce41 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-23T18:10:11+05:30 summary:

[Python-checkins] [3.13] gh-120896: Fix typo in version changed note of `urllib.parse.urlparse()` (GH-120898) (#120902)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/97acd295418493b19d78ed1a26d76e2dc8cc63dd commit: 97acd295418493b19d78ed1a26d76e2dc8cc63dd branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-23T18:28:06+05:30 summary:

[Python-checkins] GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractChildWatcher` from asyncio APIs (#120893)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/9d2e1ea3862e5950d48b45ac57995a206e33f38b commit: 9d2e1ea3862e5950d48b45ac57995a206e33f38b branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-23T18:38:50+05:30 summary: GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher

[Python-checkins] GH-120804: add docs for removal for asyncio child watchers (#120895)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/18b6ca9660370c7fb5fd50c4036be078c3267f4c commit: 18b6ca9660370c7fb5fd50c4036be078c3267f4c branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-23T13:14:12Z summary: GH-120804: add docs for removal for asyncio child watchers (#120895

[Python-checkins] [3.12] gh-119960: Add information about regex flags in re module functions (GH-119978) (#120908)

2024-06-23 Thread kumaraditya303
https://github.com/python/cpython/commit/32d43e5fa25c6d4a82bfc635e4704dda6cc34afc commit: 32d43e5fa25c6d4a82bfc635e4704dda6cc34afc branch: 3.12 author: Bénédikt Tran <[email protected]> committer: kumaraditya303 date: 2024-06-23T21:32:24+05:30 summary: [3.12] gh-

[Python-checkins] gh-112169: Documented getaddrinfo/getnameinfo default loop executor usage and implications. (#112191)

2024-06-24 Thread kumaraditya303
https://github.com/python/cpython/commit/fc297b4ba4c61febeb2d8f5d718f2955c6bbea0a commit: fc297b4ba4c61febeb2d8f5d718f2955c6bbea0a branch: main author: Alek Kowalczyk committer: kumaraditya303 date: 2024-06-24T08:35:02Z summary: gh-112169: Documented getaddrinfo/getnameinfo default loop

[Python-checkins] [3.12] gh-112169: Documented getaddrinfo/getnameinfo default loop executor usage and implications. (GH-112191) (#120936)

2024-06-24 Thread kumaraditya303
https://github.com/python/cpython/commit/3afb856dda9fed82e3d2f75fc54d063d26a41160 commit: 3afb856dda9fed82e3d2f75fc54d063d26a41160 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-24T08:45:46Z summary: [3.

[Python-checkins] [3.13] gh-112169: Documented getaddrinfo/getnameinfo default loop executor usage and implications. (GH-112191) (#120935)

2024-06-24 Thread kumaraditya303
https://github.com/python/cpython/commit/206028dba986f982a940377ab1cb8b8276301b82 commit: 206028dba986f982a940377ab1cb8b8276301b82 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-24T08:55:28Z summary: [3.

[Python-checkins] gh-107803: fix thread safety issue in double linked list implementation (#121007)

2024-06-25 Thread kumaraditya303
https://github.com/python/cpython/commit/82235449b85165add62c1b200299456a50a1d097 commit: 82235449b85165add62c1b200299456a50a1d097 branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-26T05:11:32Z summary: gh-107803: fix thread safety issue in double linked list

[Python-checkins] [3.13] gh-121025: Improve partialmethod.__repr__ (GH-121033) (#121037)

2024-06-26 Thread kumaraditya303
https://github.com/python/cpython/commit/84634254fef19ab31439e88ec0213acb46bd7b1f commit: 84634254fef19ab31439e88ec0213acb46bd7b1f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-26T09:49:42Z summary: [3.

[Python-checkins] gh-107803: add whatsnew for asyncio double linked list implementation (#120995)

2024-06-28 Thread kumaraditya303
https://github.com/python/cpython/commit/58a3580836eca58c4a0c02cedc8a8d6080b8ab59 commit: 58a3580836eca58c4a0c02cedc8a8d6080b8ab59 branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-28T14:33:31+05:30 summary: gh-107803: add whatsnew for asyncio double linked list

[Python-checkins] gh-120804: remove `is_active` method from internal child watchers implementation in asyncio (#121124)

2024-06-28 Thread kumaraditya303
https://github.com/python/cpython/commit/ef3c400434eab53e358ebfa5da0411fab722cafb commit: ef3c400434eab53e358ebfa5da0411fab722cafb branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-06-28T17:23:56+05:30 summary: gh-120804: remove `is_active` method from internal child

[Python-checkins] gh-121101: Document -Wall option (an alias for -Walways) (#121102)

2024-06-28 Thread kumaraditya303
https://github.com/python/cpython/commit/0a1e8ff9c15675fdc4d07fa6c59f83808bf00798 commit: 0a1e8ff9c15675fdc4d07fa6c59f83808bf00798 branch: main author: Wim Jeantine-Glenn committer: kumaraditya303 date: 2024-06-29T12:10:13+05:30 summary: gh-121101: Document -Wall option (an alias for -Walways

[Python-checkins] [3.13] doc: Mention the missing reflected special methods for all binary operations (GH-119931) (#120063)

2024-06-28 Thread kumaraditya303
https://github.com/python/cpython/commit/cbbd95328d9ca0fbb42e9dbb0060c4a98184e0fb commit: cbbd95328d9ca0fbb42e9dbb0060c4a98184e0fb branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-29T12:12:35+05:30 summary:

[Python-checkins] [3.12] doc: Mention the missing reflected special methods for all binary operations (GH-119931) (#120064)

2024-06-28 Thread kumaraditya303
https://github.com/python/cpython/commit/21a953613c17629321fc9e5a455a18af2a33862d commit: 21a953613c17629321fc9e5a455a18af2a33862d branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-29T12:12:46+05:30 summary:

[Python-checkins] [3.13] gh-121101: Document -Wall option (an alias for -Walways) (GH-121102) (#121146)

2024-06-29 Thread kumaraditya303
https://github.com/python/cpython/commit/d96a52e1366ad5e798839a63e68a0a1b9d728f9c commit: d96a52e1366ad5e798839a63e68a0a1b9d728f9c branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-29T13:57:11+05:30 summary:

[Python-checkins] [3.12] gh-121101: Document -Wall option (an alias for -Walways) (GH-121102) (#121147)

2024-06-29 Thread kumaraditya303
https://github.com/python/cpython/commit/6a8cb77f49a82f359c5ee5f1f6bab8aba445c562 commit: 6a8cb77f49a82f359c5ee5f1f6bab8aba445c562 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-06-29T13:57:22+05:30 summary:

[Python-checkins] gh-87744: fix waitpid race while calling send_signal in asyncio (#121126)

2024-06-30 Thread kumaraditya303
https://github.com/python/cpython/commit/bd473aa598c5161521a7018896dc124728214a6c commit: bd473aa598c5161521a7018896dc124728214a6c branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-07-01T10:17:36+05:30 summary: gh-87744: fix waitpid race while calling send_signal in asyncio

[Python-checkins] [3.13] gh-87744: fix waitpid race while calling send_signal in asyncio (GH-121126) (#121194)

2024-06-30 Thread kumaraditya303
https://github.com/python/cpython/commit/d481d4b7676f2e5d33465ca691346f69af655b24 commit: d481d4b7676f2e5d33465ca691346f69af655b24 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-01T05:11:47Z summary: [3.

[Python-checkins] gh-114104: clarify asynchronous comprehension docs to match runtime behavior (#121175)

2024-07-01 Thread kumaraditya303
https://github.com/python/cpython/commit/91313afdb392d0d6105e9aaa57b5a50112b613e7 commit: 91313afdb392d0d6105e9aaa57b5a50112b613e7 branch: main author: Danny Yang committer: kumaraditya303 date: 2024-07-01T22:04:39+05:30 summary: gh-114104: clarify asynchronous comprehension docs to match

[Python-checkins] [3.12] gh-114104: clarify asynchronous comprehension docs to match runtime behavior (GH-121175) (#121235)

2024-07-01 Thread kumaraditya303
https://github.com/python/cpython/commit/b93386e1c4dbc871148e081ae147f7d1e8d21444 commit: b93386e1c4dbc871148e081ae147f7d1e8d21444 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-01T16:41:18Z summary: [3.

[Python-checkins] [3.13] gh-114104: clarify asynchronous comprehension docs to match runtime behavior (GH-121175) (#121234)

2024-07-01 Thread kumaraditya303
https://github.com/python/cpython/commit/931c168219fc030d4b8a6986da4bb2a5a8ef91fa commit: 931c168219fc030d4b8a6986da4bb2a5a8ef91fa branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-01T16:51:43Z summary: [3.

[Python-checkins] gh-121210: handle nodes with missing attributes/fields in `ast.compare` (#121211)

2024-07-02 Thread kumaraditya303
https://github.com/python/cpython/commit/15232a0819a2f7e0f448f28f2e6081912d10e7cb commit: 15232a0819a2f7e0f448f28f2e6081912d10e7cb branch: main author: Bénédikt Tran <[email protected]> committer: kumaraditya303 date: 2024-07-02T16:23:17+05:30 summary: gh-121210:

[Python-checkins] gh-121165: protect macro expansion of `ADJUST_INDICES` with do-while(0) (#121166)

2024-07-02 Thread kumaraditya303
https://github.com/python/cpython/commit/6343486eb60ac5a9e15402a592298259c5afdee1 commit: 6343486eb60ac5a9e15402a592298259c5afdee1 branch: main author: Bénédikt Tran <[email protected]> committer: kumaraditya303 date: 2024-07-02T16:27:51+05:30 summary: gh-121165: p

[Python-checkins] gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree.c (#121260)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/705a123898f1394b62076c00ab6008c18fd8e115 commit: 705a123898f1394b62076c00ab6008c18fd8e115 branch: main author: AN Long committer: kumaraditya303 date: 2024-07-03T13:05:05+05:30 summary: gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in

[Python-checkins] gh-111872: Document the max_children attribute for `socketserver.ForkingMixIn` (#118134)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/ff5751a208e05f9d054b6df44f7651b64d415908 commit: ff5751a208e05f9d054b6df44f7651b64d415908 branch: main author: AN Long committer: kumaraditya303 date: 2024-07-03T13:16:57+05:30 summary: gh-111872: Document the max_children attribute for

[Python-checkins] updated tp_flags initialization to use inplace or (#120625)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/f65d17bf471ae5932ebd8baacedca83bfc85bdb1 commit: f65d17bf471ae5932ebd8baacedca83bfc85bdb1 branch: main author: byundojin <[email protected]> committer: kumaraditya303 date: 2024-07-03T13:21:25+05:30 summary: updated tp

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

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/f49c83aa6683915fe6ba0a1177c3d4e873429703 commit: f49c83aa6683915fe6ba0a1177c3d4e873429703 branch: main author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> committer: kumaraditya303 date: 2024-07-03T13:22:59+05:30 summary:

[Python-checkins] [3.13] gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree.c (GH-121260) (#121307)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/85971492b7afb0e29a1104dbf8adebe8d0336cf5 commit: 85971492b7afb0e29a1104dbf8adebe8d0336cf5 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-03T07:59:26Z summary: [3.

[Python-checkins] docs: Fix "Py_TPFLAGS_MANAGED_WEAKREF is set in tp_flags" (#112237)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/4232976b02cb999335c6bfdec3315520b21954f2 commit: 4232976b02cb999335c6bfdec3315520b21954f2 branch: main author: da-woods committer: kumaraditya303 date: 2024-07-03T13:35:02+05:30 summary: docs: Fix "Py_TPFLAGS_MANAGED_WEAKREF is set in tp_flags"

[Python-checkins] Docs: Add `os.splice` flags argument (#109847)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/9d3c9b822ce3c52cd747efe93b172f02c0d09289 commit: 9d3c9b822ce3c52cd747efe93b172f02c0d09289 branch: main author: Amin Alaee committer: kumaraditya303 date: 2024-07-03T13:40:57+05:30 summary: Docs: Add `os.splice` flags argument (#109847) Co-authored-by

[Python-checkins] [3.12] docs: Fix "Py_TPFLAGS_MANAGED_WEAKREF is set in tp_flags" (GH-112237) (#121310)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/4ade7723e829af350f07c5b9fd20cfec2712a982 commit: 4ade7723e829af350f07c5b9fd20cfec2712a982 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-03T13:50:02+05:30 summary:

[Python-checkins] [3.13] gh-120782: Update internal type cache when reloading datetime (GH-120829) (#120855)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/2c3aa527fd37233527f1895bcb6eddbb7c1bab08 commit: 2c3aa527fd37233527f1895bcb6eddbb7c1bab08 branch: 3.13 author: neonene <[email protected]> committer: kumaraditya303 date: 2024-07-03T13:52:51+05:30 summary: [3.13] gh-120782:

[Python-checkins] [3.13] docs: Fix "Py_TPFLAGS_MANAGED_WEAKREF is set in tp_flags" (GH-112237) (#121309)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/ee1db25bc0ea9309f834b154bdf5bdd81830a8f3 commit: ee1db25bc0ea9309f834b154bdf5bdd81830a8f3 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-03T08:23:51Z summary:

[Python-checkins] gh-121300: Add `replace` to `copy.__all__` (#121302)

2024-07-03 Thread kumaraditya303
https://github.com/python/cpython/commit/7c66906802cd8534b05264bd47acf9eb9db6d09e commit: 7c66906802cd8534b05264bd47acf9eb9db6d09e branch: main author: Max Muoto committer: kumaraditya303 date: 2024-07-03T20:33:56+05:30 summary: gh-121300: Add `replace` to `copy.__all__` (#121302) files: M Lib

[Python-checkins] gh-121333: Clarify what is the default executor for asyncio.run_in_executor (#121335)

2024-07-09 Thread kumaraditya303
https://github.com/python/cpython/commit/facf9862da0cf9331550747197800d682cd371fb commit: facf9862da0cf9331550747197800d682cd371fb branch: main author: AN Long committer: kumaraditya303 date: 2024-07-09T14:52:07+05:30 summary: gh-121333: Clarify what is the default executor for

[Python-checkins] [3.12] gh-121333: Clarify what is the default executor for asyncio.run_in_executor (GH-121335) (#121525)

2024-07-09 Thread kumaraditya303
https://github.com/python/cpython/commit/f24f31656c320e6cefa093a2230620f6061dd806 commit: f24f31656c320e6cefa093a2230620f6061dd806 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-09T15:06:40+05:30 summary:

[Python-checkins] [3.13] gh-121333: Clarify what is the default executor for asyncio.run_in_executor (GH-121335) (#121526)

2024-07-09 Thread kumaraditya303
https://github.com/python/cpython/commit/39f4add7a35cb3367f7d8d3d708c2aefcf0bebed commit: 39f4add7a35cb3367f7d8d3d708c2aefcf0bebed branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-09T15:12:45+05:30 summary:

[Python-checkins] gh-121621: Use PyMutex for writes to asyncio state (#121622)

2024-07-14 Thread kumaraditya303
https://github.com/python/cpython/commit/5d6861ad06b524358f52603f242e7c0d57532a58 commit: 5d6861ad06b524358f52603f242e7c0d57532a58 branch: main author: Ken Jin committer: kumaraditya303 date: 2024-07-14T12:22:56Z summary: gh-121621: Use PyMutex for writes to asyncio state (#121622) Co-authored

[Python-checkins] [3.13] gh-121621: Use PyMutex for writes to asyncio state (GH-121622) (#121774)

2024-07-14 Thread kumaraditya303
https://github.com/python/cpython/commit/a2a4f5ebc5d5351324c9d3c870238d2a2fafdc64 commit: a2a4f5ebc5d5351324c9d3c870238d2a2fafdc64 branch: 3.13 author: Sam Gross committer: kumaraditya303 date: 2024-07-15T10:44:35+05:30 summary: [3.13] gh-121621: Use PyMutex for writes to asyncio state (GH

[Python-checkins] fix outdated comments in asyncio (#121783)

2024-07-14 Thread kumaraditya303
https://github.com/python/cpython/commit/48042c52a6b59089e7d7dda3c8fed79d646b6f8d commit: 48042c52a6b59089e7d7dda3c8fed79d646b6f8d branch: main author: Kumar Aditya committer: kumaraditya303 date: 2024-07-15T05:59:19Z summary: fix outdated comments in asyncio (#121783) files: M Lib/asyncio

[Python-checkins] gh-120974: Make _asyncio._enter_task atomic in the free-threaded build (#122138)

2024-07-23 Thread kumaraditya303
https://github.com/python/cpython/commit/47847aa8ef66837f984fc4e30187d88f8d8ab201 commit: 47847aa8ef66837f984fc4e30187d88f8d8ab201 branch: main author: Sam Gross committer: kumaraditya303 date: 2024-07-23T14:17:14+05:30 summary: gh-120974: Make _asyncio._enter_task atomic in the free-threaded

[Python-checkins] Fix typos in comments and exception message (#122147)

2024-07-23 Thread kumaraditya303
https://github.com/python/cpython/commit/2a5d1eb7073179a13159bce937afdbe240432e7d commit: 2a5d1eb7073179a13159bce937afdbe240432e7d branch: main author: Xie Yanbo committer: kumaraditya303 date: 2024-07-23T14:34:14+05:30 summary: Fix typos in comments and exception message (#122147) files: M

[Python-checkins] [3.13] gh-120974: Make _asyncio._enter_task atomic in the free-threaded build (GH-122138) (#122152)

2024-07-23 Thread kumaraditya303
https://github.com/python/cpython/commit/48154e705318f1ef800c48f39984ce5896a4ee47 commit: 48154e705318f1ef800c48f39984ce5896a4ee47 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-23T09:17:52Z summary: [3.

[Python-checkins] gh-120974: Use common freelist code in asyncio (#122132)

2024-07-23 Thread kumaraditya303
https://github.com/python/cpython/commit/c908d1f87d287a4b3ec58c85b692a7eb617fa6ea commit: c908d1f87d287a4b3ec58c85b692a7eb617fa6ea branch: main author: Sam Gross committer: kumaraditya303 date: 2024-07-23T21:54:24+05:30 summary: gh-120974: Use common freelist code in asyncio (#122132) This

[Python-checkins] gh-120974: Make _asyncio._leave_task atomic in the free-threaded build (#122139)

2024-07-23 Thread kumaraditya303
https://github.com/python/cpython/commit/a15feded71dd47202db169613effdafc468a8cf3 commit: a15feded71dd47202db169613effdafc468a8cf3 branch: main author: Sam Gross committer: kumaraditya303 date: 2024-07-23T17:06:03Z summary: gh-120974: Make _asyncio._leave_task atomic in the free-threaded build

[Python-checkins] [3.13] gh-120974: Make _asyncio._leave_task atomic in the free-threaded build (GH-122139) (#122186)

2024-07-23 Thread kumaraditya303
https://github.com/python/cpython/commit/77ab53a5f345c705eba9a9ad38d27548adbe670e commit: 77ab53a5f345c705eba9a9ad38d27548adbe670e branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-23T17:30:58Z summary: [3.

[Python-checkins] gh-122187: Avoid TSan reported race in `run_udp_echo_server` (#122189)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/2f74b709b637cad7a9c18a2d90b0747823f2ff51 commit: 2f74b709b637cad7a9c18a2d90b0747823f2ff51 branch: main author: Sam Gross committer: kumaraditya303 date: 2024-07-25T13:46:53+05:30 summary: gh-122187: Avoid TSan reported race in `run_udp_echo_server

[Python-checkins] [3.13] gh-122187: Avoid TSan reported race in `run_udp_echo_server` (GH-122189) (#122263)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/977c7992860a58f7a48bcdac53a99e67e5bb9b9c commit: 977c7992860a58f7a48bcdac53a99e67e5bb9b9c branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-25T08:42:38Z summary: [3.

[Python-checkins] gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (#122269)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/070f1e2e5b9b31ee3e7a1af2e30d7e3a66040b17 commit: 070f1e2e5b9b31ee3e7a1af2e30d7e3a66040b17 branch: main author: AN Long committer: kumaraditya303 date: 2024-07-25T17:26:04+05:30 summary: gh-121913: Use str(exc) instead of exc.strerror in

[Python-checkins] gh-121275: Fix test_logging and test_smtplib with Python build withoud IPv6 support (#121276)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/3998554bb05f5ce18e8a66492d23d094a2299442 commit: 3998554bb05f5ce18e8a66492d23d094a2299442 branch: main author: AN Long committer: kumaraditya303 date: 2024-07-25T17:33:39+05:30 summary: gh-121275: Fix test_logging and test_smtplib with Python build

[Python-checkins] [3.12] gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (GH-122269) (#122279)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/0300e33b223a6cfd691bea186cd413424162d83a commit: 0300e33b223a6cfd691bea186cd413424162d83a branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-25T12:15:22Z summary: [3.

[Python-checkins] [3.13] gh-121913: Use str(exc) instead of exc.strerror in `asyncio.base_events` (GH-122269) (#122278)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/d1af4f53720d252326ae9c91c93495b58e0b4922 commit: d1af4f53720d252326ae9c91c93495b58e0b4922 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-25T12:20:40Z summary: [3.

[Python-checkins] gh-116322: Fix typo in the #ifdef check (#122268)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/9bb2e4623f504c44655436eae181d802f544fff9 commit: 9bb2e4623f504c44655436eae181d802f544fff9 branch: main author: Serhiy Storchaka committer: kumaraditya303 date: 2024-07-25T20:01:57+05:30 summary: gh-116322: Fix typo in the #ifdef check (#122268) files: M

[Python-checkins] [3.13] gh-116322: Fix typo in the GH-ifdef check (GH-122268) (#122284)

2024-07-25 Thread kumaraditya303
https://github.com/python/cpython/commit/88a96fc391d36f537a613c6efbe5980080156fea commit: 88a96fc391d36f537a613c6efbe5980080156fea branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-25T14:58:34Z summary: [3.

[Python-checkins] gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (#122338)

2024-07-26 Thread kumaraditya303
https://github.com/python/cpython/commit/c08696286f52d286674f264eecf7b33a335a890b commit: c08696286f52d286674f264eecf7b33a335a890b branch: main author: Peter Bierma committer: kumaraditya303 date: 2024-07-27T11:57:48+05:30 summary: gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro

[Python-checkins] [3.12] gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (GH-122338) (#122345)

2024-07-27 Thread kumaraditya303
https://github.com/python/cpython/commit/102dc44a0afe3a0c6167c52a57f1cfcedb6fb3db commit: 102dc44a0afe3a0c6167c52a57f1cfcedb6fb3db branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-27T12:36:40+05:30 summary:

[Python-checkins] [3.13] gh-122332: Fix missing `NULL` check in `asyncio.Task.get_coro` (GH-122338) (#122344)

2024-07-27 Thread kumaraditya303
https://github.com/python/cpython/commit/6b9a5af72f06b5dc2cc413e8ea2c6e8a914ab6d6 commit: 6b9a5af72f06b5dc2cc413e8ea2c6e8a914ab6d6 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-07-27T12:36:50+05:30 summary:

[Python-checkins] gh-120974: Make asyncio `swap_current_task` safe in free-threaded build (#122317)

2024-08-02 Thread kumaraditya303
https://github.com/python/cpython/commit/b5e6fb39a246bf7ee470d58632cdf588bb9d0298 commit: b5e6fb39a246bf7ee470d58632cdf588bb9d0298 branch: main author: Sam Gross committer: kumaraditya303 date: 2024-08-02T19:02:08+05:30 summary: gh-120974: Make asyncio `swap_current_task` safe in free-threaded

[Python-checkins] gh-122334: Fix crash when importing ssl after re-initialization (#122481)

2024-08-02 Thread kumaraditya303
https://github.com/python/cpython/commit/9fc1c992d6fcea0b7558c581846eef6bdd811f6c commit: 9fc1c992d6fcea0b7558c581846eef6bdd811f6c branch: main author: neonene <[email protected]> committer: kumaraditya303 date: 2024-08-02T19:06:20+05:30 summary: gh-122334: Fix cras

[Python-checkins] [3.12] gh-122334: Fix crash when importing ssl after re-initialization (GH-122481) (#122495)

2024-08-02 Thread kumaraditya303
https://github.com/python/cpython/commit/6b8a9a10617817180f546e537d1b4407625390b9 commit: 6b8a9a10617817180f546e537d1b4407625390b9 branch: 3.12 author: neonene <[email protected]> committer: kumaraditya303 date: 2024-08-02T13:44:55Z summary: [3.12] gh-122334: Fix

[Python-checkins] [3.13] gh-120974: Make asyncio `swap_current_task` safe in free-threaded build (GH-122317) (#122612)

2024-08-02 Thread kumaraditya303
https://github.com/python/cpython/commit/c1efeb32345e93d423665e91a61ce34a482e0271 commit: c1efeb32345e93d423665e91a61ce34a482e0271 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-02T13:58:24Z summary: [3.

[Python-checkins] [3.13] gh-122334: Fix crash when importing ssl after re-initialization (GH-122481) (#122614)

2024-08-02 Thread kumaraditya303
https://github.com/python/cpython/commit/b20893b5c2dc999bbad5723c20f0ff2aea83a428 commit: b20893b5c2dc999bbad5723c20f0ff2aea83a428 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-02T14:07:16Z summary: [3.

[Python-checkins] [3.13] gh-122581: Avoid data races when collecting parser statistics (GH-122694) (#122733)

2024-08-07 Thread kumaraditya303
https://github.com/python/cpython/commit/9fb6bfbef0273622421bcc109e00a51923f7b4a7 commit: 9fb6bfbef0273622421bcc109e00a51923f7b4a7 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 date: 2024-08-07T18:29:03+05:30 summary:

[Python-checkins] gh-117139: Fix an incorrect borrow in bytecodes.c (#122318)

2024-08-07 Thread kumaraditya303
https://github.com/python/cpython/commit/674a50ef2f8909c1c5d812e166bcc12ae6377908 commit: 674a50ef2f8909c1c5d812e166bcc12ae6377908 branch: main author: Sam Gross committer: kumaraditya303 date: 2024-08-07T19:06:19+05:30 summary: gh-117139: Fix an incorrect borrow in bytecodes.c (#122318

  1   2   3   4   5   6   7   >