summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Irit Katriel2020-12-043-4/+48
* bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)Victor Stinner2020-12-041-5/+0
* bpo-42246: Don't forget the entry block when ensuring that all exits have a l...Mark Shannon2020-12-041-0/+18
* bpo-42562: Fix issue when dis failed to parse function that has no line numbe...Yurii Karabas2020-12-042-1/+18
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Victor Stinner2020-12-031-3/+0
* bpo-42328: Skip some tests with themes vista and xpnative on Windows 7 (GH-23...Serhiy Storchaka2020-12-031-0/+9
* Remove the conditional for setting query. (#23604)Senthil Kumaran2020-12-031-2/+1
* bpo-42504: fix for MACOSX_DEPLOYMENT_TARGET=11 (GH-23556)FX Coudert2020-12-033-6/+10
* bpo-42246: Make sure that line number is correct after a return, as required ...Mark Shannon2020-12-022-5/+42
* bpo-42500: Fix recursion in or after except (GH-23568)Mark Shannon2020-12-022-41/+57
* bpo-31904: Fix test_netrc for VxWorks RTOS (GH-21675)pxinwr2020-12-011-48/+42
* bpo-31904: Fix fifo test cases for VxWorks (GH-20254)pxinwr2020-12-012-6/+17
* bpo-38200: Add itertools.pairwise() (GH-23549)Raymond Hettinger2020-12-011-18/+34
* bpo-42482: remove reference to exc_traceback from TracebackException (GH-23531)Irit Katriel2020-12-012-3/+24
* bpo-31904: Support signal module on VxWorks (GH-23391)pxinwr2020-11-301-3/+10
* bpo-28468: Add platform.freedesktop_os_release() (GH-23492)Christian Heimes2020-11-302-0/+163
* bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570)Terry Jan Reedy2020-11-301-1/+1
* bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH...Andreas Poehlmann2020-11-302-1/+17
* bpo-42506: Fix unexpected output in test_format (GH-23564)Zackery Spytz2020-11-301-2/+2
* bpo-42142: Try to fix timeouts in ttk tests (GH-23474)Serhiy Storchaka2020-11-302-19/+7
* bpo-42450: Minor updates to the itertools recipes (GH-23555)Raymond Hettinger2020-11-291-2/+2
* bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)Renato Cunha2020-11-291-1/+3
* bpo-31904: skip some tests related to fifo on VxWorks (GH-23473)pxinwr2020-11-282-0/+6
* bpo-31904: add shell requirement for test_pipes (GH-23489)pxinwr2020-11-282-2/+5
* skip test_test of test_mailcap on VxWorks (GH-23507)pxinwr2020-11-281-0/+2
* skip test_getaddrinfo_ipv6_scopeid_symbolic and test_getnameinfo_ipv6_scopeid...pxinwr2020-11-281-0/+2
* bpo-41818: Fix test_master_read() so that it succeeds on all platforms that e...Soumendra Ganguly2020-11-281-10/+5
* bpo-31904: Fix test_os.test_getcwd_long_path() failure for VxWorks (GH-20256)pxinwr2020-11-281-0/+4
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Zackery Spytz2020-11-282-4/+7
* bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396)Wansoo Kim2020-11-281-1/+1
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-288-158/+64
* bpo-42452: Improve colorsys.rgb_to_hls code (GH-23306)Julien Jerphanion2020-11-281-7/+8
* bpo-42474: test TracebackException comparison to non-equal instances (GH-23522)Irit Katriel2020-11-271-2/+39
* bpo-41818: Make test_openpty() avoid unexpected success due to number of rows...Soumendra Ganguly2020-11-271-19/+10
* bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-2...Alex Grönholm2020-11-262-8/+14
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-265-109/+54
* bpo-41818: test_openpty succeed on Gentoo, don't expect to fail on this platf...Andrew Svetlov2020-11-251-0/+14
* bpo-41818: Updated tests for the standard pty library (GH-22962)Soumendra Ganguly2020-11-251-11/+111
* bpo-42299: Remove formatter module (GH-23476)Dong-hee Na2020-11-252-453/+1
* bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499)Yurii Karabas2020-11-255-35/+46
* bpo-42202: Store func annotations as a tuple (GH-23316)Yurii Karabas2020-11-251-1/+2
* bpo-12800: tarfile: Restore fix from 011525ee9 (GH-21409)Julien Palard2020-11-252-3/+6
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-249-451/+302
* bpo-42370: Check element before making mouse click in ttk tests (GH-23491)Serhiy Storchaka2020-11-241-3/+11
* bpo-41100: in test_platform, ignore 10.16 (GH-23485)Ned Deily2020-11-241-1/+4
* Added support for negative indexes to PurePath.parents (GH-21799)Yaroslav Pankovych2020-11-232-2/+6
* bpo-15450: Allow subclassing of dircmp (GH-23424) (#23424)Nick Crews2020-11-232-12/+50
* bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of small c...Irit Katriel2020-11-232-75/+88
* bpo-42328: Fix tkinter.ttk.Style.map(). (GH-23300)Serhiy Storchaka2020-11-223-28/+107
* bpo-42427: Use the errno attribute of OSError instead of args[0] (GH-23449)Serhiy Storchaka2020-11-223-11/+11