[Python-checkins] [3.12] gh-117187: Fix XML tests for vanilla Expat <2.6.0 (GH-117203) (GH-117244)

2024-03-25 Thread gpshead
https://github.com/python/cpython/commit/1c72265a31eaf8724a5dd16391b951366460b64e commit: 1c72265a31eaf8724a5dd16391b951366460b64e branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: gpshead date: 2024-03-26T02:08:23Z summary: [3.12] gh-117187:

[Python-checkins] [3.11] gh-117187: Fix XML tests for vanilla Expat <2.6.0 (GH-117203) (GH-117245)

2024-03-25 Thread gpshead
https://github.com/python/cpython/commit/2f8d3a17d9b0f086d1585e8753176e268c03d533 commit: 2f8d3a17d9b0f086d1585e8753176e268c03d533 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: gpshead date: 2024-03-26T02:08:28Z summary: [3.11] gh-117187:

[Python-checkins] gh-117187: Fix XML tests for vanilla Expat <2.6.0 (GH-117203)

2024-03-25 Thread gpshead
https://github.com/python/cpython/commit/9f74e86c78853c101a23e938f8e32ea838d8f62e commit: 9f74e86c78853c101a23e938f8e32ea838d8f62e branch: main author: Sebastian Pipping committer: gpshead date: 2024-03-25T18:48:27-07:00 summary: gh-117187: Fix XML tests for vanilla Expat <2.6.0 (GH-117203) Thi

[Python-checkins] gh-109870: Dataclasses: batch up exec calls (gh-110851)

2024-03-25 Thread ericvsmith
https://github.com/python/cpython/commit/8945b7ff55b87d11c747af2dad0e3e4d631e62d6 commit: 8945b7ff55b87d11c747af2dad0e3e4d631e62d6 branch: main author: Eric V. Smith committer: ericvsmith date: 2024-03-25T19:59:14-04:00 summary: gh-109870: Dataclasses: batch up exec calls (gh-110851) Instead of

[Python-checkins] [3.12] Sync main docs and docstring for median_grouped(). (gh-117214) (gh-117241)

2024-03-25 Thread rhettinger
https://github.com/python/cpython/commit/293a4799509d7223e80d68b802067f8d82e78e5a commit: 293a4799509d7223e80d68b802067f8d82e78e5a branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: rhettinger date: 2024-03-25T23:56:36Z summary: [3.12] Sync mai

[Python-checkins] Sync main docs and docstring for median_grouped(). (gh-117214)

2024-03-25 Thread rhettinger
https://github.com/python/cpython/commit/7ebad77ad65ab4d5d8d0c333256a882262cec189 commit: 7ebad77ad65ab4d5d8d0c333256a882262cec189 branch: main author: Raymond Hettinger committer: rhettinger date: 2024-03-25T23:49:44Z summary: Sync main docs and docstring for median_grouped(). (gh-117214) file

[Python-checkins] gh-117114: Make os.path.isdevdrive available on all platforms (GH-117115)

2024-03-25 Thread zooba
https://github.com/python/cpython/commit/0821923aa979a72464c5da8dfa53a719bba5801c commit: 0821923aa979a72464c5da8dfa53a719bba5801c branch: main author: Nice Zombies committer: zooba date: 2024-03-25T22:55:11Z summary: gh-117114: Make os.path.isdevdrive available on all platforms (GH-117115) fil

[Python-checkins] [3.11] Add information about negative indexes to sequence datamodel doc (GH-110903) (#117239)

2024-03-25 Thread terryjreedy
https://github.com/python/cpython/commit/e64c7d3e196b73b3ce03de42f0acd554cbd3706d commit: e64c7d3e196b73b3ce03de42f0acd554cbd3706d branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: terryjreedy date: 2024-03-25T22:40:41Z summary: [3.11] Add inf

[Python-checkins] [3.12] Add information about negative indexes to sequence datamodel doc (GH-110903) (#117238)

2024-03-25 Thread terryjreedy
https://github.com/python/cpython/commit/9359fdd6fa6cdba4e046fdb56ec12abbea2ded1a commit: 9359fdd6fa6cdba4e046fdb56ec12abbea2ded1a branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: terryjreedy date: 2024-03-25T22:40:28Z summary: [3.12] Add inf

[Python-checkins] Add information about negative indexes to sequence datamodel doc (#110903)

2024-03-25 Thread terryjreedy
https://github.com/python/cpython/commit/c2276176d543a2fc2d57709c2787f99850fbb073 commit: c2276176d543a2fc2d57709c2787f99850fbb073 branch: main author: Adorilson Bezerra committer: terryjreedy date: 2024-03-25T18:34:20-04:00 summary: Add information about negative indexes to sequence datamodel

[Python-checkins] A few minor tweaks to get stats working and compiling cleanly. (#117219)

2024-03-25 Thread gvanrossum
https://github.com/python/cpython/commit/23e4f80ce2a2bac50acd1785e791316d5b578b8d commit: 23e4f80ce2a2bac50acd1785e791316d5b578b8d branch: main author: Mark Shannon committer: gvanrossum date: 2024-03-25T13:43:51-07:00 summary: A few minor tweaks to get stats working and compiling cleanly. (#117

[Python-checkins] gh-116936: Add PyType_GetModuleByDef() to the limited C API (#116937)

2024-03-25 Thread vstinner
https://github.com/python/cpython/commit/507896d97dcff2d7999efa264b29d9003c525c49 commit: 507896d97dcff2d7999efa264b29d9003c525c49 branch: main author: Victor Stinner committer: vstinner date: 2024-03-25T16:32:20Z summary: gh-116936: Add PyType_GetModuleByDef() to the limited C API (#116937) fi

[Python-checkins] gh-87193: Support bytes objects with refcount > 1 in _PyBytes_Resize() (GH-117160)

2024-03-25 Thread encukou
https://github.com/python/cpython/commit/0c1a42cf9c8cd0d4534d5c1d58f118ce7c5c446e commit: 0c1a42cf9c8cd0d4534d5c1d58f118ce7c5c446e branch: main author: Serhiy Storchaka committer: encukou date: 2024-03-25T16:32:11+01:00 summary: gh-87193: Support bytes objects with refcount > 1 in _PyBytes_Resiz

[Python-checkins] gh-112948: Make pdb completion similar to repl completion (#112950)

2024-03-25 Thread iritkatriel
https://github.com/python/cpython/commit/01e7405da400e8997f8964d06cc414045e144681 commit: 01e7405da400e8997f8964d06cc414045e144681 branch: main author: Tian Gao committer: iritkatriel <[email protected]> date: 2024-03-25T15:18:09Z summary: gh-112948: Make pdb completion

[Python-checkins] [3.12] Minor markup and grammar fixes in the statistics docs (gh-117216) (gh-117218)

2024-03-25 Thread rhettinger
https://github.com/python/cpython/commit/0c334f627bc11b11193ee7224971e4a249f24fe4 commit: 0c334f627bc11b11193ee7224971e4a249f24fe4 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: rhettinger date: 2024-03-25T14:33:15Z summary: [3.12] Minor ma

[Python-checkins] Minor markup and grammar fixes in the statistics docs (gh-117216)

2024-03-25 Thread rhettinger
https://github.com/python/cpython/commit/9db2a8f914ad59019d448cecc43b6d45f46424a0 commit: 9db2a8f914ad59019d448cecc43b6d45f46424a0 branch: main author: Raymond Hettinger committer: rhettinger date: 2024-03-25T09:26:42-05:00 summary: Minor markup and grammar fixes in the statistics docs (gh-11721

[Python-checkins] [3.11] gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (GH-32011) (GH-117210)

2024-03-25 Thread serhiy-storchaka
https://github.com/python/cpython/commit/6261322e26f4c2bb8b94e9b03788ba11e43b3d40 commit: 6261322e26f4c2bb8b94e9b03788ba11e43b3d40 branch: 3.11 author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-25T10:34:25Z summary: [3.11] gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recv

[Python-checkins] [3.12] gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (GH-32011) (GH-117209)

2024-03-25 Thread serhiy-storchaka
https://github.com/python/cpython/commit/bd2c60f8c2a6664b353dbaee8ae0eddc55d1ffb8 commit: bd2c60f8c2a6664b353dbaee8ae0eddc55d1ffb8 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka date: 2024-03-25T12:21:31+02:00 summary: [3.1