summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...Mark Shannon2020-12-154-88/+84
* bpo-33610: Edit idlelib.codecontext (GH-23773)Terry Jan Reedy2020-12-151-5/+8
* bpo-42639: atexit now logs callbacks exceptions (GH-23771)Victor Stinner2020-12-141-1/+0
* bpo-42639: Cleanup atexitmodule.c (GH-23770)Victor Stinner2020-12-141-11/+12
* bpo-41877: Check for misspelled speccing arguments (GH-23737)vabr-g2020-12-142-8/+83
* bpo-36541: Add lib2to3 grammar PEP-570 pos-only arg parsing (GH-23759)Gregory P. Smith2020-12-142-6/+77
* bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spu...Mark Shannon2020-12-141-0/+26
* Don't generate spurious line number in try-except-finally. (#23760)Mark Shannon2020-12-141-0/+17
* bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj2020-12-136-39/+159
* bpo-30858: Improve error location for expressions with assignments (GH-23753)Pablo Galindo2020-12-132-1/+8
* bpo-39717: [tarfile] update nested exception raising (GH-23739)Ethan Furman2020-12-121-32/+33
* bpo-42059: Fix required/optional keys for TypedDict(..., total=False) (GH-22736)Alex Grönholm2020-12-102-2/+6
* bpo-34750: [Enum] add `_EnumDict.update()` support (GH-23725)Ethan Furman2020-12-102-1/+39
* bpo-42385: [Enum] add `_generate_next_value_` to StrEnum (GH-23735)Ethan Furman2020-12-102-0/+12
* bpo-41877: Improve docs for assert misspellings check in mock (GH-23729)vabr-g2020-12-102-3/+4
* bpo-42517: [Enum] do not convert private names into members (GH-23722)Ethan Furman2020-12-102-1/+43
* bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23714)Ethan Furman2020-12-102-2/+103
* bpo-41439: Skip test_ssl and test_uuid tests if fork() is not supported (GH-2...pxinwr2020-12-082-2/+2
* bpo-41443: Add more attribute checking in test_posix (GH-21688)pxinwr2020-12-081-3/+7
* [Enum] reformat and add doc strings (GH-23705)Ethan Furman2020-12-082-54/+135
* bpo-41907: [Enum] fix format() behavior for IntFlag (GH-22497)Ethan Furman2020-12-082-1/+15
* bpo-42111: Make the xxlimited module an example of best extension module prac...Petr Viktorin2020-12-081-0/+79
* Python 3.10.0a3v3.10.0a3Pablo Galindo2020-12-071-37/+66
* bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match d...Matti Picus2020-12-072-2/+5
* bpo-41889: [Enum] fix multiple-inheritance regression (GH-22487)Ethan Furman2020-12-072-3/+34
* bpo-42508: Keep IDLE running on macOS (GH-23577)Terry Jan Reedy2020-12-072-19/+11
* bpo-42582: Remove asyncio._all_tasks_compat(). (GH-23664)Serhiy Storchaka2020-12-062-28/+0
* bpo-42532: Check if NonCallableMock's spec_arg is not None instead of call it...idanw2062020-12-062-1/+11
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...kj2020-12-051-0/+5
* GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)Senthil Kumaran2020-12-052-8/+36
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-055-0/+103
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-0418-175/+321
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Irit Katriel2020-12-042-1/+17
* bpo-31904: fix test_doctest.py failures for VxWorks (GH-23419)pxinwr2020-12-041-1/+2
* 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