summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-39587: Enum - use correct mixed-in data type (GH-22263)Ethan Furman2020-09-152-1/+55
* bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)Batuhan Taskaya2020-09-151-0/+5
* Fix all Python Cookbook links (#22205)Andre Delfino2020-09-153-3/+3
* minor reformat of enum tests (GH-22259)Ethan Furman2020-09-151-26/+44
* bpo-41631: _ast module uses again a global state (#21961)Victor Stinner2020-09-152-15/+106
* bpo-41513: Remove broken tests that fail on Gentoo (GH-22249)Raymond Hettinger2020-09-151-51/+0
* bpo-41513: Add docs and tests for hypot() (GH-22238)Raymond Hettinger2020-09-141-0/+51
* bpo-38967: Improve the error msg for reserved _sunder_ names in enum (GH-18370)Zackery Spytz2020-09-132-1/+7
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Victor Stinner2020-09-122-9/+20
* bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)Terry Jan Reedy2020-09-121-1/+1
* Update idlelib/help.html to current IDLE doc (GH-22181)Terry Jan Reedy2020-09-091-4/+4
* bpo-41428: Implementation for PEP 604 (GH-21515)Maggie Moss2020-09-095-9/+175
* bpo-41525: Make the Python program help ASCII-only (GH-21836)Serhiy Storchaka2020-09-091-1/+5
* Fix typo in typing.py (GH-22121)Graham Bleaney2020-09-081-1/+1
* bpo-38762: Extend logging.test_multiprocessing to cover missing cases. (GH-22...Irit Katriel2020-09-081-6/+56
* bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)Erlend Egeberg Aasland2020-09-076-20/+0
* bpo-41316: Make tarfile follow specs for FNAME (GH-21511)Artem Bulgakov2020-09-072-1/+15
* bpo-41720: Add "return NotImplemented" in turtle.Vec2D.__rmul__(). (GH-22092)Serhiy Storchaka2020-09-072-2/+17
* bpo-41687: Fix sendfile implementation to work with Solaris (#22040)Jakub KulĂ­k2020-09-051-0/+6
* bpo-41627: Distinguish 32 and 64-bit user site packages on Windows (GH-22098)Steve Dower2020-09-042-10/+15
* bpo-41700: Skip test if the locale is not supported (GH-22081)Dong-hee Na2020-09-041-1/+4
* Fix 'gather' rules in the python parser generator (GH-22021)Pablo Galindo2020-09-031-1/+15
* bpo-39010: Improve test shutdown (#22066)Ben Darnell2020-09-031-3/+11
* bpo-41696: Fix handling of debug mode in asyncio.run (#22069)Shantanu2020-09-032-2/+6
* closes bpo-41689: Preserve text signature from tp_doc in C heap type creation...Benjamin Peterson2020-09-021-0/+4
* Fixed mistake in test for f-string error description (GH-22036) (GH-22059)han-solo2020-09-022-2/+2
* bpo-39349: Add cancel_futures to Executor.shutdown base class (GH-22023)Shantanu2020-09-011-1/+4
* bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)Pablo Galindo2020-09-011-0/+31
* bpo-41528: Use math module in turtle (GH-21837)Marek Madejski2020-09-011-9/+9
* bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` i...han-solo2020-09-012-0/+40
* bpo-39010: Fix errors logged on proactor loop restart (#22017)Ben Darnell2020-08-314-2/+35
* bpo-41344: Raise ValueError when creating shared memory of size 0 (GH-21556)Vinay Sharma2020-08-302-0/+14
* bpo-39994: Fix pprint handling of dict subclasses that override __repr__ (GH-...Irit Katriel2020-08-302-7/+48
* bpo-41609: Fix output of pdb's whatis command for instance methods (GH-21935)Irit Katriel2020-08-272-6/+47
* bpo-33660: Fix PosixPath to resolve a relative path on rootDong-hee Na2020-08-272-1/+13
* bpo-37658: Fix asyncio.wait_for() to respect waited task status (#21894)Elvis Pranskevichus2020-08-262-3/+22
* bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (#21895)Elvis Pranskevichus2020-08-262-2/+38
* bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914)Cleber Rosa2020-08-201-2/+2
* bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method no...James Weaver2020-08-171-1/+1
* Fix typo in message from assert statement (GH-21283)Allen2020-08-171-1/+1
* bpo-41521: Rename blacklist parameter to not_exported (GH-21824)Victor Stinner2020-08-1718-92/+91
* bpo-41503: Fix race between setTarget and flush in logging.handlers.MemoryHan...Irit Katriel2020-08-162-1/+26
* bpo-41513: Improve speed and accuracy of math.hypot() (GH-21803)Raymond Hettinger2020-08-161-3/+4
* bpo-41540: AIX: skip test that is flaky with a default ulimit. (#21890)Stefan Krah2020-08-151-0/+3
* bpo-41025: Fix subclassing for zoneinfo.ZoneInfo (GH-20965)Paul Ganssle2020-08-141-2/+2
* bpo-41410: Fix outdated info in mkstemp docs (GH-21701)Rishav Kundu2020-08-141-2/+1
* bpo-41521: Replace denylist with blocklist is http.cookiejar doc (GH-21826)Victor Stinner2020-08-131-3/+3
* bpo-41520: Fix second codeop regression (GH-21848)Terry Jan Reedy2020-08-132-7/+10
* bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...Pablo Galindo2020-08-131-0/+10
* bpo-41520: codeop no longer ignores SyntaxWarning (GH-21838)Victor Stinner2020-08-122-2/+11