summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-42385: [Enum] add `_generate_next_value_` to StrEnum (GH-23735)Ethan Furman2020-12-104-2/+17
* bpo-41877: Improve docs for assert misspellings check in mock (GH-23729)vabr-g2020-12-104-6/+9
* bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730)Victor Stinner2020-12-103-0/+6
* bpo-42517: [Enum] do not convert private names into members (GH-23722)Ethan Furman2020-12-104-1/+54
* bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23714)Ethan Furman2020-12-103-2/+104
* [doc] Link to issue regarding logging.disable level param default value (GH-2...Andre Delfino2020-12-091-2/+2
* [doc] Document logging.basicConfig default format (GH-23710)Andre Delfino2020-12-091-1/+3
* bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718)pxinwr2020-12-092-0/+5
* bpo-32381: Add _PyRun_AnyFileObject() (GH-23723)Victor Stinner2020-12-095-53/+106
* bpo-32381: Remove unused _Py_fopen() function (GH-23711)Victor Stinner2020-12-093-31/+3
* bpo-32381: Add _PyRun_SimpleFileObject() (GH-23709)Victor Stinner2020-12-083-31/+23
* bpo-41439: Skip test_ssl and test_uuid tests if fork() is not supported (GH-2...pxinwr2020-12-083-2/+3
* bpo-41443: Add more attribute checking in test_posix (GH-21688)pxinwr2020-12-082-3/+8
* bpo-35134: Add Include/cpython/pythonrun.h file (GH-23701)Victor Stinner2020-12-085-117/+129
* bpo-32381: Rewrite PyErr_ProgramText() (GH-23700)Victor Stinner2020-12-081-5/+10
* [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-083-1/+16
* bpo-42111: Make the xxlimited module an example of best extension module prac...Petr Viktorin2020-12-0811-158/+748
* bpo-41910: move news entry (GH-23695)Terry Jan Reedy2020-12-081-9/+9
* bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)Hai Shi2020-12-083-11/+5
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642)Victor Stinner2020-12-082-92/+135
* Post 3.10.0a3Pablo Galindo2020-12-081-1/+1
* Merge tag 'v3.10.0a3'Pablo Galindo2020-12-08148-372/+1573
|\
| * Python 3.10.0a3v3.10.0a3Pablo Galindo2020-12-07148-372/+1573
* | bpo-41462: Add os.set_blocking() support for VxWorks RTOS (GH-21713)pxinwr2020-12-072-1/+4
* | bpo-42579: Make workaround for various versions of Sphinx more robust (GH-23662)Matěj Cepl2020-12-071-1/+6
|/
* bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match d...Matti Picus2020-12-073-2/+10
* bpo-30459: Cast the result of PyCell_SET to void (GH-23654)Victor Stinner2020-12-073-3/+14
* bpo-41889: [Enum] fix multiple-inheritance regression (GH-22487)Ethan Furman2020-12-073-3/+35
* Update macos installer ReadMe for 3.10.0a3 (GH-23671)Ned Deily2020-12-071-2/+10
* bpo-42508: Keep IDLE running on macOS (GH-23577)Terry Jan Reedy2020-12-073-19/+14
* bpo-38843: Document behavior of default when the attribute is already set (GH...Raymond Hettinger2020-12-071-1/+9
* bpo-42582: Remove asyncio._all_tasks_compat(). (GH-23664)Serhiy Storchaka2020-12-062-28/+0
* 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-063-1/+12
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...kj2020-12-053-1/+9
* GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)Senthil Kumaran2020-12-053-8/+41
* bpo-30459: Cast the result of PyList_SET_ITEM() to void (GH-19975)Zackery Spytz2020-12-053-2/+4
* bpo-41116: Fix setup.py test for macOS Tcl/Tk frameworks (GH-23649)Ned Deily2020-12-051-1/+2
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-0512-0/+192
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-0425-3033/+3244
* bpo-42545: Improve the error message in the stable API script (GH-23648)Pablo Galindo2020-12-041-21/+41
* bpo-42545: Check that all symbols in the limited ABI are exported (GH-23616)Pablo Galindo2020-12-045-0/+1027
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Irit Katriel2020-12-043-1/+21
* bpo-31904: fix test_doctest.py failures for VxWorks (GH-23419)pxinwr2020-12-042-1/+3
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Irit Katriel2020-12-044-4/+49
* bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)Victor Stinner2020-12-042-5/+3
* bpo-42246: Don't forget the entry block when ensuring that all exits have a l...Mark Shannon2020-12-044-4/+28
* bpo-42562: Fix issue when dis failed to parse function that has no line numbe...Yurii Karabas2020-12-043-1/+20
* bpo-42523: Fix supported versions in "Using Python on Windows" (GH-23603)Zackery Spytz2020-12-031-2/+2