summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update Stale action messageMariatta-patch-1Mariatta2020-12-151-1/+1
* bpo-31904: Skip os.path.expanduser() tests on VxWorks (GH-23776)pxinwr2020-12-152-0/+5
* bpo-31904: Skip some tests of changing owner in _test_all_chown_common() on V...pxinwr2020-12-152-2/+12
* bpo-31904: Disable os.popen and popen test cases on VxWorks (GH-21687)pxinwr2020-12-157-46/+58
* Adding "stale" GitHub Action (GH-21247)Mariatta2020-12-151-0/+19
* bpo-40219: Lowered ttk LabeledScale dummy (GH-21467)E-Paine2020-12-152-1/+5
* Let dependabot create PRs against the maintenance branches (GH-22992)Mariatta2020-12-151-0/+4
* Update stable ABI script for MacOS and update list of exported symbols (GH-23...Pablo Galindo2020-12-152-1/+6
* bpo-42641: Enhance test_select.test_select() (GH-23782)Victor Stinner2020-12-152-9/+23
* bpo-36675: Doc: Reveal doctest directives (GH-23620)Julien Palard2020-12-152-19/+39
* bpo-42639: atexit._run_exitfuncs() uses sys.unraisablehook (GH-23779)Victor Stinner2020-12-155-184/+140
* bpo-32381: pymain_run_file() uses PySys_FormatStderr() (GH-23778)Victor Stinner2020-12-151-17/+34
* bpo-42639: Add script_helper.run_test_script() (GH-23777)Victor Stinner2020-12-153-16/+34
* bpo-14935: Remove static state from the _csv module (GH-23224)Petr Viktorin2020-12-152-241/+304
* bpo-42639: Move atexit state to PyInterpreterState (GH-23763)Victor Stinner2020-12-157-113/+101
* bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...Mark Shannon2020-12-158-3545/+3486
* bpo-33610: Edit idlelib.codecontext (GH-23773)Terry Jan Reedy2020-12-151-5/+8
* bpo-31904: Enable libpython3.so shared library for VxWorks (GH-23741)pxinwr2020-12-143-4/+5
* bpo-42639: atexit now logs callbacks exceptions (GH-23771)Victor Stinner2020-12-148-28/+53
* bpo-42639: Cleanup atexitmodule.c (GH-23770)Victor Stinner2020-12-145-158/+125
* bpo-41877: Check for misspelled speccing arguments (GH-23737)vabr-g2020-12-143-8/+84
* bpo-36541: Add lib2to3 grammar PEP-570 pos-only arg parsing (GH-23759)Gregory P. Smith2020-12-143-6/+79
* bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spu...Mark Shannon2020-12-144-3767/+3795
* Don't generate spurious line number in try-except-finally. (#23760)Mark Shannon2020-12-144-1732/+1751
* bpo-42598: Fix implicit function declarations in configure (GH-23690)Joshua Root2020-12-133-12/+16
* bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj2020-12-139-63/+212
* bpo-30858: Improve error location for expressions with assignments (GH-23753)Pablo Galindo2020-12-135-6/+15
* Add two spaces around equal sign (#23719)sblondon2020-12-121-1/+1
* bpo-39717: [tarfile] update nested exception raising (GH-23739)Ethan Furman2020-12-122-32/+34
* bpo-41879: Doc: Fix description of async for statement (GH-23548)Nick Gaya2020-12-111-4/+4
* bpo-42059: Fix required/optional keys for TypedDict(..., total=False) (GH-22736)Alex Grönholm2020-12-103-2/+7
* bpo-34750: [Enum] add `_EnumDict.update()` support (GH-23725)Ethan Furman2020-12-103-1/+40
* 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-094-1/+54
* bpo-42567: [Enum] call __init_subclass__ after members are added (GH-23714)Ethan Furman2020-12-093-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-093-31/+23
* bpo-41439: Skip test_ssl and test_uuid tests if fork() is not supported (GH-2...pxinwr2020-12-093-2/+3
* bpo-41443: Add more attribute checking in test_posix (GH-21688)pxinwr2020-12-092-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