summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self i...Miss Skeleton (bot)2020-10-122-2/+7
* [doc] Fix typo in the graphlib docs (GH-22661) (GH-22669)Miss Skeleton (bot)2020-10-121-3/+4
* Fix typo (GH-22582)Miss Skeleton (bot)2020-10-121-1/+1
* bpo-41739: Fix test_logging.test_race_between_set_target_and_flush() (GH-2265...Victor Stinner2020-10-122-8/+15
* bpo-41971: Fix test failure in test.test_tools.test_c_analyzer when mutating ...Miss Skeleton (bot)2020-10-111-1/+3
* Fix typo in typing.rst (GH-22625)Miss Skeleton (bot)2020-10-111-1/+1
* bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to limit...Miss Skeleton (bot)2020-10-103-8/+9
* [3.9] bpo-41371: Handle lzma lib import error in test_zoneinfo.py (GH-21734) ...Karthikeyan Singaravelan2020-10-101-1/+2
* bpo-41831: Restore str implementation of __str__ in tkinter.EventType (GH-22355)Miss Skeleton (bot)2020-10-092-3/+5
* bpo-41831: Add tests for tkinter.Event.__repr__ (GH-22354) (GH-22617)Miss Skeleton (bot)2020-10-091-0/+48
* [3.9] bpo-41979: Accept star-unpacking on with-item targets (GH-22611) (GH-22...Batuhan Taskaya2020-10-094-8/+18
* [3.9] bpo-41970: Avoid test failure in test_lib2to3 if the module is already ...Karthikeyan Singaravelan2020-10-092-2/+4
* Fix the attribute names in the docstring of GenericAlias (GH-22594)Miss Skeleton (bot)2020-10-081-1/+1
* bpo-41557: Update Windows installer to use SQLite 3.33.0 (GH-21960)Miss Skeleton (bot)2020-10-084-3/+4
* bpo-41976: Fix the fallback to gcc of ctypes.util.find_library when using gcc...Miss Skeleton (bot)2020-10-083-7/+38
* bpo-41306: Allow scale value to not be rounded (GH-21715)Miss Skeleton (bot)2020-10-082-1/+3
* bpo-41376: Fix the documentation of `site.getusersitepackages()` (GH-21602)Miss Skeleton (bot)2020-10-081-1/+3
* bpo-41944: No longer call eval() on content received via HTTP in the CJK code...Miss Skeleton (bot)2020-10-062-14/+9
* bpo-41584: clarify when the reflected method of a binary arithemtic operator ...Miss Skeleton (bot)2020-10-051-7/+8
* bpo-41939: Fix test_site.test_license_exists_at_url() (GH-22559) (#22567)Miss Skeleton (bot)2020-10-052-0/+5
* Post 3.9.0Łukasz Langa2020-10-051-1/+1
* Merge tag 'v3.9.0' into 3.9Łukasz Langa2020-10-058-553/+911
|\
| * Python 3.9.0v3.9.0Łukasz Langa2020-10-0511-558/+911
| * bpo-37062: Enum: add extended AutoNumber example (GH-22349) (GH-22370)Miss Islington (bot)2020-10-042-0/+27
| * bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332)Miss Islington (bot)2020-10-041-1/+1
| * [3.9] bpo-41490: Bump vendored pip to version 20.2.3 (GH-22527). (GH-22544)Pablo Galindo2020-10-042-17/+14
| * [3.9] bpo-41602: raise SIGINT exit code on KeyboardInterrupt from pymain_run_...Łukasz Langa2020-10-043-6/+91
| * bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)Miss Islington (bot)2020-10-043-0/+13
| * Fix a compiler warning in pycore_pylifecycle.h (GH-22331)Pablo Galindo2020-10-041-1/+1
| * bpo-41875: Use __builtin_unreachable when possible (GH-22433)Miss Islington (bot)2020-10-042-1/+5
| * Typo fix - "mesasge" should be "message" (GH-22498)Miss Skeleton (bot)2020-10-041-2/+2
| * [3.9] Remove duplicated words words (GH-22298). (GH-22299)Serhiy Storchaka2020-10-042-3/+3
| * [3.9] Remove duplicated words words (GH-20413). (GH-22296)Serhiy Storchaka2020-10-045-5/+5
| * [doc] Use list[int] instead of List[int] (etc.) in a few more places (GH-22524)Miss Skeleton (bot)2020-10-042-8/+8
| * [doc] Fix link to abc.collections.Iterable (GH-22520)Miss Skeleton (bot)2020-10-041-2/+2
| * [3.9] bpo-41867: List options for timespec in docstrings of isoformat methods...Miss Skeleton (bot)2020-10-042-6/+12
| * [3.9] bpo-40833: Clarify Path.rename doc-string regarding relative paths (GH-...Miss Skeleton (bot)2020-10-042-5/+22
| * [doc] Fix link to abc.collections.Iterable (GH-22502)Miss Skeleton (bot)2020-10-041-1/+1
| * bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291)Miss Islington (bot)2020-10-041-4/+6
| * Fix grammar in secrets module documentation (GH-22467)Miss Islington (bot)2020-10-041-1/+1
| * [doc] Leverage the fact that the actual types can now be indexed for typing (...Miss Islington (bot)2020-10-042-30/+29
| * bpo-41858: Clarify line in optparse doc (GH-22407)Miss Islington (bot)2020-10-041-1/+1
| * bpo-41844: Add IDLE section to What's New 3.9 (GN-22382)Miss Islington (bot)2020-10-041-0/+14
| * bpo-35293: Travis CI uses "make venv" for the doc (GH-22307) (GH-22309)Victor Stinner2020-10-043-8/+12
| * bpo-41762: Fix usage of productionlist markup in the doc (GH-22281)Miss Islington (bot)2020-10-048-69/+70
| * [3.9] bpo-27032, bpo-37328: Document removing HTMLParser.unescape() (GH-22288)Terry Jan Reedy2020-10-041-0/+5
* | bpo-41774: Tweak new programming FAQ entry (GH-22562)Miss Skeleton (bot)2020-10-051-1/+1
* | bpo-41557: Update macOS installer to use SQLite 3.33.0 (GH-21959) (GH-22560)Miss Skeleton (bot)2020-10-052-3/+4
* | bpo-41892: Clarify that an example in the ElementTree docs explicitly avoids ...Miss Skeleton (bot)2020-10-041-0/+6
* | [3.9] bpo-41909: Enable previously disabled recursion checks. (GH-22536) (GH-...Serhiy Storchaka2020-10-044-4/+12