summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Post 3.9.0rc2branch-v3.9.0Łukasz Langa2020-09-171-1/+1
* Merge tag 'v3.9.0rc2' into 3.9Łukasz Langa2020-09-1740-95/+409
|\
| * Python 3.9.0rc2v3.9.0rc2Łukasz Langa2020-09-1640-95/+409
* | bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Miss Islington (bot)2020-09-175-3/+34
* | [3.9] bpo-39728: Enum: fix duplicate `ValueError` (GH-22277) (GH-22282)Ethan Furman2020-09-164-2/+21
* | _auto_called cleanup (GH-22285)Miss Islington (bot)2020-09-162-1/+12
|/
* bpo-41517: do not allow Enums to be extended (GH-22271)Miss Islington (bot)2020-09-163-5/+18
* bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128)Miss Islington (bot)2020-09-161-3/+2
* [3.9] bpo-41687: Fix sendfile implementation to work with Solaris (GH-22040) ...Łukasz Langa2020-09-163-0/+26
* [3.9] bpo-41789: honor object overrides in Enum classes (GH-22250) (GH-22272)Ethan Furman2020-09-163-1/+14
* bpo-39587: Enum - use correct mixed-in data type (GH-22263) (GH-22266)Miss Islington (bot)2020-09-153-1/+56
* bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)Miss Islington (bot)2020-09-153-0/+46
* Improve the description of difflib in the documentation (GH-22253) (#22261)Miss Islington (bot)2020-09-151-2/+2
* [3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258)Pablo Galindo2020-09-157-309/+155
* bpo-41776: Revise example of "continue" in the tutorial documentation (GH-222...Miss Islington (bot)2020-09-151-5/+5
* bpo-40721: add note about enum member name case (GH-22231)Miss Islington (bot)2020-09-141-0/+6
* bpo-39883: Update macOS installer copy of LICENSE. (GH-22235) (GH-22236)Miss Islington (bot)2020-09-141-3/+24
* [3.9] bpo-41778: Change a punctuation on documentation. (GH-22229) (GH-22232)Emmanuel Arias2020-09-131-2/+2
* bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* f...Miss Islington (bot)2020-09-131-3/+3
* bpo-41672: Fix type mismatches in imaplib docs (GH-22207)Miss Islington (bot)2020-09-121-2/+2
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Miss Islington (bot)2020-09-123-9/+23
* bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)Miss Islington (bot)2020-09-112-1/+2
* bpo-41729: Fix test_winconsole failures (3) and hang (GH-22146)Miss Islington (bot)2020-09-121-1/+1
* [doc] struct: update note about network byte order form to be more helpful (G...Miss Islington (bot)2020-09-111-2/+4
* Doc: Fix alphabetical ordering of removeprefix/suffix. (GH-22194)Miss Islington (bot)2020-09-101-27/+28
* bpo-37149: Change Shipman tkinter link from archive.org to TkDocs (GH-22188)Miss Islington (bot)2020-09-102-1/+2
* [doc] Remove superfluous comment about equal in f-strings (GH-22006)Miss Islington (bot)2020-09-091-1/+1
* Update idlelib/help.html to current IDLE doc (GH-22181)Miss Islington (bot)2020-09-091-4/+4
* Add missing colon to IDLE doc markup (GH-22007)Miss Islington (bot)2020-09-091-1/+1
* [3.9] bpo-41688: Document bug in **= dispatching in the language data… (GH-...Ammar Askar2020-09-091-0/+7
* Fix incorrect bpo number in change notes. (GH-22151) (#22174)Miss Islington (bot)2020-09-091-1/+1
* Fixes dead links to Django's logging config docs (GH-20823) (GH-22170)Miss Islington (bot)2020-09-091-2/+2
* Fix compiler warnings in init_dump_ascii_wstr() (GH-22150)Miss Islington (bot)2020-09-091-1/+1
* bpo-41525: Make the Python program help ASCII-only (GH-21836)Miss Islington (bot)2020-09-084-3/+8
* [doc] Fix padding in timeit (GH-22152)Miss Islington (bot)2020-09-081-1/+1
* [3.9] Fix typo in typing.py (GH-22121) (GH-22156)Miss Islington (bot)2020-09-081-1/+1
* bpo-41720: Add "return NotImplemented" in turtle.Vec2D.__rmul__(). (GH-22092)Miss Islington (bot)2020-09-073-2/+19
* bpo-41401: Fix test_fspath_support in test_io. (GH-21640) (GH-22133)Victor Stinner2020-09-071-1/+1
* [3.9] closes bpo-41723: Fix an error in the py_compile documentation. (GH-22118)Benjamin Peterson2020-09-051-1/+1
* [3.9] [doc] Fix padding in some typing definitions (GH-22114) (GH-22115)Miss Islington (bot)2020-09-051-12/+12
* bpo-41218: Improve the test cases for test_compile_top_level_await_no_coro (G...Miss Islington (bot)2020-09-051-3/+5
* Remove unnecessary grammar decorations and change header (GH-20819) (GH-22101)Miss Islington (bot)2020-09-051-2/+1
* bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...Miss Islington (bot)2020-09-053-1/+13
* On path with known exact float, extract the double with the fast macro. (GH-2...Miss Islington (bot)2020-09-041-5/+10
* bpo-29590: fix stack trace for gen.throw() with yield from (GH-19896)Miss Islington (bot)2020-09-043-0/+61
* closes bpo-41533: Fix a potential memory leak when allocating a stack (GH-21847)Miss Islington (bot)2020-09-042-0/+5
* Fix typo in message from assert statement (GH-21283)Miss Islington (bot)2020-09-041-1/+1
* [3.9] bpo-38787: Clarify docs for PyType_GetModule and warn against common mi...Miss Islington (bot)2020-09-041-1/+11
* [3.9] Improve asyncio-dev 'Concurrency and Multithreading' docs (GH-20882) (G...Miss Islington (bot)2020-09-041-0/+10
* [3.9] bpo-40486: Specify what happens if directory content change diring iter...Miss Islington (bot)2020-09-043-3/+17