summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Python 3.12.0a1v3.12.0a1Thomas Wouters2022-10-25597-1455/+6456
* GH-89237: fix hang in proactor `subprocess.wait_closed()` (#98572)Kumar Aditya2022-10-243-2/+10
* gh-98507: [typing docs] Rephrase "now supports `[]`" to "now supports subscri...Nikita Sobolev2022-10-241-72/+78
* GH-91635: clarify docs about closing of transport in asyncio (#98563)Kumar Aditya2022-10-241-1/+2
* GH-98407: fix `test_kill_issue43884` to not leak child processes (#98491)Kumar Aditya2022-10-241-1/+4
* gh-98500: Fix typing docs for `*View` classes (#98511)Nikita Sobolev2022-10-241-4/+4
* gh-95913: Fix grammar for SpooledTemporaryFile 3.11 whatsnew entry (#98604)Jelle Zijlstra2022-10-241-1/+1
* gh-97909: Mark up members of PyMemberDef (GH-98473)Johnny115022022-10-241-21/+21
* gh-95913: Fix, sort & expand pending removal sect in 3.11 WhatsNew (GH-98583)C.A.M. Gerlach2022-10-241-20/+43
* gh-95913: Add io support for SpooledTemporaryFile in 3.11 Whatsnew (#98312)C.A.M. Gerlach2022-10-241-0/+13
* gh-95913: Edit & expand Deprecated section of 3.11 WhatsNew (#98581)C.A.M. Gerlach2022-10-241-82/+108
* gh-95913: Edit, expand & format Bytecode sect in 3.11 WhatsNew (GH-98559)C.A.M. Gerlach2022-10-241-39/+81
* gh-95913: Edit, link and sort 3.11 WhatsNew Build section (#98588)C.A.M. Gerlach2022-10-241-57/+67
* gh-95913: Edit, sort & expand 3.11 WhatsNew Porting section (#98585)C.A.M. Gerlach2022-10-241-30/+31
* gh-95913: Edit, xref & sort 3.11 WhatsNew Removed section (#98584)C.A.M. Gerlach2022-10-241-58/+61
* gh-95913 Add string section to Whatsnew with new Template methods (#98311)C.A.M. Gerlach2022-10-241-0/+12
* gh-91524: Speed up the regular expression substitution (#91525)Serhiy Storchaka2022-10-239-91/+358
* Update Mac installer messages to 3.12 alpha (GH-98575)Ned Deily2022-10-232-4/+4
* gh-98561: Fix a typo in typing (GH-98562)Omkaar2022-10-231-1/+1
* no-issue: typo fix in c-api/tuple.rst (gh-98560)wim glenn2022-10-231-1/+1
* gh-98456: Replace deprecated `set-output` with up-to-date version (gh-98457)Noam Cohen2022-10-231-2/+2
* gh-95913: Edit & expand Optimizations in 3.11 WhatsNew (#98426)C.A.M. Gerlach2022-10-221-20/+39
* gh-95913: Copyedit & xref FrameInfo in Whatsnew inspect section (#98304)C.A.M. Gerlach2022-10-222-16/+35
* GH-98539: fix ref cycle in `_SSLProtocolTransport` after close (#98540)Kumar Aditya2022-10-221-2/+5
* GH-98543: Fix `asyncio.TaskGroup` to not keep reference to errors after rais...Kumar Aditya2022-10-221-5/+5
* GH-98363: Slicing isn't necessary. A size reduction will suffice. (GH-98538)Raymond Hettinger2022-10-221-7/+6
* Fix typo in news entry (#98361)Ikko Ashimine2022-10-221-1/+1
* [Enum docs]: fix order of arguments to isinstance() (#98542)Clément Robert2022-10-221-1/+1
* GH-98363: Use better accessor macro (#98535)Raymond Hettinger2022-10-211-1/+1
* gh-51511: Note that codecs.open()'s encoding parameter affects automatic conv...Stanley2022-10-213-3/+6
* bpo-2716: add license for audioop module (#19972)Furkan Onder2022-10-212-14/+55
* gh-98298: [Enum] document ReprEnum, global_enum, and show_flag_values (GH-98455)Ethan Furman2022-10-211-1/+47
* GH-98363: Fix exception handling in batched() (GH-98523)Raymond Hettinger2022-10-212-8/+36
* gh-95027: Fix regrtest stdout encoding on Windows (#98492)Victor Stinner2022-10-212-3/+15
* gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)Carl Meyer2022-10-219-5/+462
* gh-98172: [doc] mention that except* handles naked exceptions (GH-98496)Irit Katriel2022-10-211-1/+13
* gh-97514: Don't use Linux abstract sockets for multiprocessing (#98501)Gregory P. Smith2022-10-202-5/+15
* gh-97912: Avoid quadratic behavior when adding LOAD_FAST_CHECK (GH-97952)Dennis Sweeney2022-10-203-64/+175
* gh-96035: Make urllib.parse.urlparse reject non-numeric ports (#98273)Ben Kallus2022-10-203-12/+18
* gh-98461: Fix source location in comprehensions bytecode (GH-98464)Irit Katriel2022-10-203-60/+234
* gh-98421: Clean Up PyObject_Print (GH-98422)MonadChains2022-10-201-17/+8
* gh-98360: multiprocessing now spawns children on Windows with correct argv[0]...Steve Dower2022-10-204-3/+62
* CODEOWNERS: Become a typing code owner (#98480)Alex Waygood2022-10-201-1/+1
* [doc] Improve logging cookbook example. (GH-98481)Vinay Sajip2022-10-201-0/+65
* Add more tkinter.Canvas tests (GH-98475)Serhiy Storchaka2022-10-201-0/+158
* gh-95023: Added os.setns and os.unshare functions (#95046)Noam Cohen2022-10-2011-1/+418
* GH-98363: Presize the list for batched() (GH-98419)Raymond Hettinger2022-10-201-13/+13
* gh-98374: Suppress ImportError for invalid query for help() command. (gh-98450)Dong-hee Na2022-10-202-1/+6
* typing tests: `_overload_dummy` raises `NotImplementedError`, not `RuntimeErr...Nikita Sobolev2022-10-191-1/+1
* gh-98354: Add unicode check for 'name' attribute in _imp_create_builtin (GH-9...chgnrdv2022-10-193-0/+43