summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Python 3.9.0rc2v3.9.0rc2Łukasz Langa2020-09-1637-62/+360
* bpo-41517: do not allow Enums to be extended (GH-22271)Miss Islington (bot)2020-09-161-0/+1
* [3.9] bpo-41687: Fix sendfile implementation to work with Solaris (GH-22040) ...Łukasz Langa2020-09-161-0/+1
* [3.9] bpo-41789: honor object overrides in Enum classes (GH-22250) (GH-22272)Ethan Furman2020-09-161-0/+2
* bpo-39587: Enum - use correct mixed-in data type (GH-22263) (GH-22266)Miss Islington (bot)2020-09-151-0/+1
* bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)Miss Islington (bot)2020-09-151-0/+2
* [3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258)Pablo Galindo2020-09-151-0/+5
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Miss Islington (bot)2020-09-121-0/+3
* bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)Miss Islington (bot)2020-09-121-0/+1
* bpo-37149: Change Shipman tkinter link from archive.org to TkDocs (GH-22188)Miss Islington (bot)2020-09-101-0/+1
* Fix incorrect bpo number in change notes. (GH-22151) (#22174)Miss Islington (bot)2020-09-091-1/+1
* bpo-41525: Make the Python program help ASCII-only (GH-21836)Miss Islington (bot)2020-09-092-1/+2
* bpo-41720: Add "return NotImplemented" in turtle.Vec2D.__rmul__(). (GH-22092)Miss Islington (bot)2020-09-071-0/+2
* bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...Miss Islington (bot)2020-09-041-0/+2
* bpo-29590: fix stack trace for gen.throw() with yield from (GH-19896)Miss Islington (bot)2020-09-041-0/+2
* closes bpo-41533: Fix a potential memory leak when allocating a stack (GH-21847)Miss Islington (bot)2020-09-041-0/+2
* bpo-41696: Fix handling of debug mode in asyncio.run (GH-22069) (#22071)Miss Islington (bot)2020-09-031-0/+1
* bpo-39010: Fix errors logged on proactor loop restart (GH-22017) (#22034)Miss Islington (bot)2020-09-031-0/+2
* bpo-39883: Use BSD0 license for code in docs (GH-17635) (GH-22073)Miss Islington (bot)2020-09-031-0/+1
* [3.9] bpo-41690: Use a loop to collect args in the parser instead of recursio...Pablo Galindo2020-09-021-0/+2
* [3.9] bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH...Pablo Galindo2020-09-011-0/+2
* bpo-41617: Fix pycore_byteswap.h to support clang 3.0 (GH-22042) (GH-22044)Victor Stinner2020-09-011-0/+2
* bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` i...Miss Islington (bot)2020-09-011-0/+2
* bpo-41344: Raise ValueError when creating shared memory of size 0 (GH-21556) ...Miss Islington (bot)2020-08-301-0/+1
* bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-21978)Miss Islington (bot)2020-08-301-0/+2
* [3.9] bpo-41624: fix documentation of typing.Coroutine (GH-21952) (#21982)Karthikeyan Singaravelan2020-08-281-0/+1
* bpo-41609: Fix output of pdb's whatis command for instance methods (GH-21935)...Miss Islington (bot)2020-08-271-0/+1
* bpo-33660: Fix PosixPath to resolve a relative path on root (#21974)Miss Islington (bot)2020-08-271-0/+2
* bpo-37658: Fix asyncio.wait_for() to respect waited task status (GH-21894) (G...Miss Islington (bot)2020-08-261-0/+2
* bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (GH-2...Miss Islington (bot)2020-08-261-0/+3
* [3.9] bpo-40204: Allow pre-Sphinx 3 syntax in the doc (GH-21844) (GH-21901)Victor Stinner2020-08-191-0/+3
* bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method no...Miss Islington (bot)2020-08-171-0/+1
* [3.9] bpo-41503: Fix race between setTarget and flush in logging.handlers.Mem...Miss Islington (bot)2020-08-161-0/+1
* bpo-31122: ssl.wrap_socket() now raises ssl.SSLEOFError rather than OSError w...Miss Islington (bot)2020-08-151-0/+1
* bpo-41025: Fix subclassing for zoneinfo.ZoneInfo (GH-20965) (GH-21876)Miss Islington (bot)2020-08-141-0/+2
* bpo-41526: Fixed layout of final page of the installer (GH-21871)Miss Islington (bot)2020-08-131-0/+2
* [3.9] bpo-41520: Fix second codeop regression (GH-21848)Terry Jan Reedy2020-08-131-1/+1
* [3.9] bpo-40979: refactored typing.rst; (mostly) same content, new sub-sectio...Guido van Rossum2020-08-121-0/+1
* bpo-41520: codeop no longer ignores SyntaxWarning (GH-21838)Miss Islington (bot)2020-08-121-0/+1
* Python 3.9.0rc1v3.9.0rc1Łukasz Langa2020-08-1121-28/+187
* bpo-41468: Improve and test IDLE run error exit (GH-21798)Miss Islington (bot)2020-08-091-0/+1
* bpo-41497: Fix potential UnicodeDecodeError in dis CLI (GH-21757)Miss Islington (bot)2020-08-081-0/+1
* bpo-41490: Update ensurepip to install pip 20.2.1 and setuptools 49.2.1 (GH-2...Steve Dower2020-08-071-0/+1
* bpo-39871: Fix an error in a news entry (GH-21749)Miss Islington (bot)2020-08-071-1/+1
* bpo-41492: Fixes the description appearing in UAC prompts on Windows (GH-21754)Miss Islington (bot)2020-08-061-0/+1
* bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312)Miss Islington (bot)2020-08-051-0/+2
* bpo-41467: Fix asyncio recv_into() on Windows (GH-21720)Miss Islington (bot)2020-08-041-0/+3
* bpo-41425: Make tkinter doc example runnable (GH-21706)Miss Islington (bot)2020-08-031-0/+1
* closes bpo-38156: Always handle interrupts in PyOS_StdioReadline. (GH-21569)Miss Islington (bot)2020-07-291-0/+1
* bpo-41412 and bpo-40948: Windows installer updates (GH-21656)Miss Islington (bot)2020-07-282-0/+3