summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-42059: Fix required/optional keys for TypedDict(..., total=False) (GH-22736)Alex Grönholm2020-12-101-0/+1
* bpo-34750: [Enum] add `_EnumDict.update()` support (GH-23725)Ethan Furman2020-12-101-0/+1
* bpo-42385: [Enum] add `_generate_next_value_` to StrEnum (GH-23735)Ethan Furman2020-12-101-0/+1
* bpo-41877: Improve docs for assert misspellings check in mock (GH-23729)vabr-g2020-12-101-0/+1
* bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730)Victor Stinner2020-12-101-0/+3
* bpo-42517: [Enum] do not convert private names into members (GH-23722)Ethan Furman2020-12-101-0/+2
* bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23714)Ethan Furman2020-12-101-0/+1
* bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718)pxinwr2020-12-091-0/+1
* bpo-32381: Remove unused _Py_fopen() function (GH-23711)Victor Stinner2020-12-091-0/+3
* bpo-41439: Skip test_ssl and test_uuid tests if fork() is not supported (GH-2...pxinwr2020-12-081-0/+1
* bpo-41443: Add more attribute checking in test_posix (GH-21688)pxinwr2020-12-081-0/+1
* bpo-41907: [Enum] fix format() behavior for IntFlag (GH-22497)Ethan Furman2020-12-081-0/+1
* bpo-42111: Make the xxlimited module an example of best extension module prac...Petr Viktorin2020-12-081-0/+2
* bpo-41910: move news entry (GH-23695)Terry Jan Reedy2020-12-081-9/+9
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642)Victor Stinner2020-12-081-0/+3
* Merge tag 'v3.10.0a3'Pablo Galindo2020-12-08145-332/+1504
|\
| * Python 3.10.0a3v3.10.0a3Pablo Galindo2020-12-07145-332/+1504
* | bpo-41462: Add os.set_blocking() support for VxWorks RTOS (GH-21713)pxinwr2020-12-071-0/+1
|/
* bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match d...Matti Picus2020-12-071-0/+5
* bpo-30459: Cast the result of PyCell_SET to void (GH-23654)Victor Stinner2020-12-071-2/+6
* bpo-41889: [Enum] fix multiple-inheritance regression (GH-22487)Ethan Furman2020-12-071-0/+1
* bpo-42508: Keep IDLE running on macOS (GH-23577)Terry Jan Reedy2020-12-071-0/+3
* bpo-42576: Clarify only debug builds are affected in news (GH-23663)kj2020-12-061-1/+2
* bpo-42532: Check if NonCallableMock's spec_arg is not None instead of call it...idanw2062020-12-061-0/+1
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...kj2020-12-051-0/+3
* GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)Senthil Kumaran2020-12-051-0/+5
* bpo-30459: Cast the result of PyList_SET_ITEM() to void (GH-19975)Zackery Spytz2020-12-051-0/+2
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-051-0/+26
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-043-0/+5
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Irit Katriel2020-12-041-0/+4
* bpo-31904: fix test_doctest.py failures for VxWorks (GH-23419)pxinwr2020-12-041-0/+1
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Irit Katriel2020-12-041-0/+1
* bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)Victor Stinner2020-12-041-0/+3
* bpo-42562: Fix issue when dis failed to parse function that has no line numbe...Yurii Karabas2020-12-041-0/+2
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Victor Stinner2020-12-031-0/+3
* bpo-42504: fix for MACOSX_DEPLOYMENT_TARGET=11 (GH-23556)FX Coudert2020-12-031-0/+1
* bpo-42246: Make sure that line number is correct after a return, as required ...Mark Shannon2020-12-021-0/+2
* bpo-42500: Fix recursion in or after except (GH-23568)Mark Shannon2020-12-021-0/+2
* bpo-31904: Fix test_netrc for VxWorks RTOS (GH-21675)pxinwr2020-12-011-0/+1
* bpo-31904: Fix fifo test cases for VxWorks (GH-20254)pxinwr2020-12-011-0/+1
* bpo-38200: Add itertools.pairwise() (GH-23549)Raymond Hettinger2020-12-011-0/+1
* bpo-42482: remove reference to exc_traceback from TracebackException (GH-23531)Irit Katriel2020-12-011-0/+1
* bpo-31904: Support signal module on VxWorks (GH-23391)pxinwr2020-11-301-0/+1
* bpo-28468: Add platform.freedesktop_os_release() (GH-23492)Christian Heimes2020-11-301-0/+2
* bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH...Andreas Poehlmann2020-11-301-0/+1
* bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)Renato Cunha2020-11-291-0/+3
* bpo-31904: remove libnet dependency from detect_socket() for VxWorks (GH-23394)pxinwr2020-11-281-0/+1
* bpo-31904: skip some tests related to fifo on VxWorks (GH-23473)pxinwr2020-11-281-0/+1
* bpo-31904: add shell requirement for test_pipes (GH-23489)pxinwr2020-11-281-0/+1
* skip test_test of test_mailcap on VxWorks (GH-23507)pxinwr2020-11-281-0/+1