summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-43921: Fix test_ssl.test_wrong_cert_tls13() on Windows (GH-26502)Victor Stinner2021-06-032-14/+9
* bpo-42213: Check connection in sqlite3.Connection.__enter__ (GH-26512)Erlend Egeberg Aasland2021-06-032-16/+35
* bpo-44298: Fix line numbers for early exits in with statements. (GH-26513)Mark Shannon2021-06-034-2971/+3027
* bpo-39560: Document PyUnicode_FromKindAndData() kind transformation (GH-23848)Zackery Spytz2021-06-031-0/+6
* bpo-43858: Add logging.getLevelNamesMapping() (GH-26459)andrei kulakov2021-06-034-1/+21
* Add bpo-42914 to What's New (GH-25124)Wm. Keith van der Meulen2021-06-032-0/+4
* bpo-44022: Improve the regression test. (GH-26503)Gregory P. Smith2021-06-031-1/+6
* bpo-44282: Fix occasional test_incremental_editing failures on buildbots (GH-...Tal Einat2021-06-023-43/+49
* bpo-43921: Fix test_ssl.test_pha_required_nocert() (GH-26489)Victor Stinner2021-06-022-2/+11
* build(deps): bump actions/cache from 2.1.5 to 2.1.6 (GH-26476)dependabot[bot]2021-06-021-2/+2
* Typo fix in asyncio-eventloop.rst (GH-26482)Zac Bentley2021-06-021-1/+1
* bpo-44285: getpath.c: Assert that env_file is NULL during an error check (GH-...stratakis2021-06-021-0/+1
* bpo-44165: pysqlite_statement_create now returns a Py object, not an int (GH-...Erlend Egeberg Aasland2021-06-021-1/+1
* bpo-17792: more accurate error message for unbound variable access exceptions...Irit Katriel2021-06-022-3/+4
* Remove duplicate address in CommonTestMixin_v4.test_leading_zeros() (GH-26326)Mariusz Felisiak2021-06-021-1/+0
* bpo-44165: Optimise sqlite3 statement preparation by passing string size (GH-...Erlend Egeberg Aasland2021-06-023-7/+25
* bpo-44263: Py_TPFLAGS_HAVE_GC requires tp_traverse (GH-26463)Victor Stinner2021-06-013-3/+40
* Fix typo in block comment in Include/internal/pycore_condvar.h (GH-26457)Rishi2021-06-011-1/+1
* bpo-44279: [doc] reword contextlib.suppress documentation (GH-26428)MapleCCC2021-06-011-2/+3
* bpo-44273: Improve syntax error message for assigning to "..." (GH-26477)Serhiy Storchaka2021-06-012-2/+2
* bpo-42972: Track sqlite3 statement objects (GH-26475)Erlend Egeberg Aasland2021-06-014-48/+40
* bpo-44260: Do not read system entropy without need in Random() (GH-26455)Serhiy Storchaka2021-05-313-44/+38
* bpo-44246: Remove note about access by index now that a compatibility shim is...Jason R. Coombs2021-05-311-4/+1
* bpo-44246: Restore compatibility in entry_points (GH-26468)Jason R. Coombs2021-05-313-1/+125
* bpo-44246: Entry points performance improvements. (GH-26467)Jason R. Coombs2021-05-313-1/+30
* bpo-44263: Fix _decimal and _testcapi GC protocol (GH-26464)Victor Stinner2021-05-312-2/+9
* bpo-42972: Fix sqlite3 traverse/clear functions (GH-26452)Erlend Egeberg Aasland2021-05-316-41/+44
* bpo-42972: Fully implement GC protocol for xxlimited (GH-26451)Hai Shi2021-05-312-0/+16
* Fixing typos in turtle.rst (GH-24385)Jules Lasne2021-05-301-5/+5
* bpo-44235: Remove deprecated functions in the gettext module. (GH-26378)Dong-hee Na2021-05-305-447/+40
* Trivial change in fractions module docs: real -> rational numbers (GH-25009)Sergey B Kirpichev2021-05-291-1/+1
* bpo-43750: Fix incorrect reference to PACKET_MULTIHOST in the docs (GH-25241)Zackery Spytz2021-05-291-1/+1
* bpo-42085: [docs] Add versionadded for am_send in type object documentation (...Martmists2021-05-291-0/+2
* bpo-44254: On Mac, remove disfunctional colors from turtledemo buttons (GH-26...Terry Jan Reedy2021-05-292-16/+30
* bpo-44263: Mention PyType_Ready in the gc protocol warning (GH-26445)Pablo Galindo2021-05-292-9/+12
* bpo-44263: Better explain the GC contract for PyType_FromSpecWithBases (GH-26...Pablo Galindo2021-05-292-0/+18
* Remove duplicate mime type mapping .bmp -> image/x-ms-bmp (GH-26300)Andreas Jansson2021-05-291-1/+0
* Fix MSVC compiler warnings in dictobject.c (GH-26432)Mark Shannon2021-05-292-4/+6
* bpo-44252: Correctly implement gc support for SSLError objects (GH-26439)Pablo Galindo2021-05-281-2/+1
* bpo-44206: Fix compiler warnings in dictobject.c (GH-26440)Pablo Galindo2021-05-281-3/+3
* Fix dataclass comment typo _eq__ -> __eq__ (GH-26433)Sean Grady2021-05-281-1/+1
* bpo-44045: fix spelling of uppercase vs upper-case (GH-25985)Jürgen Gmach2021-05-285-5/+5
* bpo-44249: Fix 3 README.rst typos (GH-26385)Ayush Parikh2021-05-281-3/+3
* bpo-42972: Fix GC assertion error in _winapi by untracking Overlapped earlier...Ken Jin2021-05-281-1/+1
* bpo-42972: Fully support GC for _winapi.Overlapped (GH-26381)Ken Jin2021-05-281-2/+46
* bpo-42972: Fully implement GC protocol for functools LRU cache (GH-26423)Erlend Egeberg Aasland2021-05-281-2/+4
* bpo-44206: Add a version number to dictionary keys (GH-26333)Mark Shannon2021-05-287-317/+223
* bpo-42972: Fully implement GC protocol for functools keywrapper and partial t...Erlend Egeberg Aasland2021-05-281-22/+37
* bpo-41611: IDLE: Catch TclError exceptions in AutoCompleteWindow.winconfig_ev...Tal Einat2021-05-282-27/+37
* bpo-44256: Do not expose _functools._list_elem_type (GH-26416)Inada Naoki2021-05-281-3/+2