summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-43795: PEP 652 user documentation (GH-25668)Petr Viktorin2021-05-117-1105/+1188
* Doc: http.server: directory is not a class attribute, but an argument. (GH-26...Julien Palard2021-05-111-8/+8
* bpo-43743 add comment stating _USE_CP_SENDFILE should not be removed (#26024)Giampaolo Rodola2021-05-101-0/+2
* bpo-44074: let patchcheck infer the base branch name (GH-25991)Leonardo Lai2021-05-102-4/+27
* bpo-43558: Add note about base class initialization to dataclasses doc (GH-25...dhoekstra20002021-05-103-0/+24
* Prevent access outside buffer (GH-26012)Dennis Sweeney2021-05-101-3/+5
* Revert test for Tix deprecation warning (GH-26005)Zachary Ware2021-05-091-6/+3
* Fix a word in dataclasses docs. (GH-26003)Eric V. Smith2021-05-091-1/+1
* bpo-43417: Better buffer handling for ast.unparse (GH-24772)Batuhan Taskaya2021-05-082-65/+86
* bpo-28307: Convert simple C-style formatting with literal format into f-strin...Serhiy Storchaka2021-05-084-2165/+2390
* bpo-43149: Correct the syntax error message for multiple exception types (GH-...Pablo Galindo2021-05-085-8/+10
* Update references to master to point to main in customsourcelink.html (GH-25993)Pablo Galindo2021-05-081-1/+1
* bpo-42725: mention the changes on what's new (GH-25974)Batuhan Taskaya2021-05-081-0/+10
* bpo-31904: Correct error string in test_file_not_exists() for VxWorks (GH-25965)pxinwr2021-05-082-1/+2
* Fix make libainstall. (GH-25980)Senthil Kumaran2021-05-081-1/+1
* Fix the whatsnew/3.11.rst to link to the blurb-generated changelog. (GH-25979)Ned Deily2021-05-081-1/+1
* Update the SOURCE_URI in pyspecific.py to point to the new branch (GH-25977)Pablo Galindo2021-05-081-1/+1
* Add the blurbify of the 3.10.0b1 changelog to the main branch (GH-25976)Ned Deily2021-05-08169-443/+1807
* Do not use Py_ssize_clean_t (GH-25940)Inada Naoki2021-05-089-56/+46
* bpo-44026: Idle - display interpreter's 'did you mean' hints (GH-25912)E-Paine2021-05-074-5/+63
* bpo-44063: set the missing end locations on the compiler (GH-25956)Batuhan Taskaya2021-05-072-5/+20
* bpo-41730: Show deprecation warnings for tkinter.tix (GH-22186)wyz23x22021-05-073-6/+19
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-0730-5688/+6615
* Simple Enhancement. Add missing return statements in ftplib documentation. (G...Senthil Kumaran2021-05-071-0/+2
* bpo-44047: Remove unused argument to _pysqlite_seterror (GH-25915)Erlend Egeberg Aasland2021-05-074-22/+23
* Doc: What's new in Python 3.11 (GH-25963)Julien Palard2021-05-072-0/+114
* bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki2021-05-0711-840/+15
* bpo-40943: Fix skipitem() didn't raise SystemError (GH-25937)Inada Naoki2021-05-073-11/+32
* Fix minor grammar problems in dataclasses documentation (GH-25948)Scott Noyes2021-05-061-7/+7
* docs: clearly document that ":#X" string formatting results in "0X..." (GH-25...Tal Einat2021-05-061-2/+4
* bpo-43972: Set content-length to 0 for http.server.SimpleHTTPRequestHandler 3...Stephen Rosen2021-05-063-0/+5
* bpo-44059: Register the SerenityOS Browser in the webbrowser module (GH-25947)Linus Groh2021-05-063-0/+6
* Eliminate duplicated calculations and unnecessary work for linear regression ...Raymond Hettinger2021-05-061-2/+7
* bpo-38820: Test with OpenSSL 3.0.0-alpha16 (GH-25942)Christian Heimes2021-05-062-45/+12
* bpo-44017: Update test_contextlib_async not to emit DeprecationWarn (GH-25918)Dong-hee Na2021-05-062-9/+6
* bpo-43882 Remove the newline, and tab early. From query and fragments. (GH-25...Senthil Kumaran2021-05-052-11/+21
* bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Conti...Gen Xu2021-05-053-18/+32
* bpo-36515: Disable unaligned memory access in _sha3 on ARM (GH-25927)Gregory P. Smith2021-05-052-0/+7
* bpo-35753: Fix crash in doctest with unwrap-able functions (#22981)Alfred Perlstein2021-05-053-3/+29
* bpo-43795: Mark PyCodec_Unregister as a function, not data, in stable ABI (GH...Petr Viktorin2021-05-053-2/+4
* typing: format patch with make patchcheck (GH-25919)Dong-hee Na2021-05-051-1/+1
* bpo-44040: Update broken link in pathlib source (GH-25905)Kevin Follstad2021-05-051-6/+6
* Eliminate duplicated assignment in _randommodule.c (GH-25904)Brad Larsen2021-05-051-1/+1
* bpo-40521: Convert deque freelist from global vars to instance vars (GH-25906)Raymond Hettinger2021-05-052-28/+34
* bpo-40297: Fix test_socket.CANTest.testSendFrame (GH-19548)karl ding2021-05-041-2/+1
* Clarify rx parameter of compileall functions (#25857)Jean-Abou-Samra2021-05-041-4/+6
* Fix inconsistent fsum vs sum and fmean vs mean (GH-25898)Raymond Hettinger2021-05-041-3/+3
* Fix typo in ast.py (GH-25740)Ikko Ashimine2021-05-041-2/+2
* bpo-42686: Enable SQLite math functions in Windows build (#24053)Erlend Egeberg Aasland2021-05-042-1/+2
* bpo-32822: Add finally with return/break/continue to the tutorial (#25600)Roberto Hueso2021-05-042-0/+5