summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45060: Get rid of few uses of the equality operators with None (GH-28087)Serhiy Storchaka2021-08-319-13/+13
* bpo-44135: Refine explanation of how passing tuples to issubclass() behaves (...Zack Kneupper2021-08-311-3/+3
* bpo-42064: Offset arguments for PyObject_Vectorcall in the _sqlite module (GH...Petr Viktorin2021-08-312-10/+14
* bpo-44991: Make GIL handling more explicit in `sqlite3` callbacks (GH-27934)Erlend Egeberg Aasland2021-08-311-35/+27
* bpo-44925: [docs] Fix confusing deprecation notice for typing.IO (GH-28004)DonnaDia2021-08-311-4/+4
* bpo-39218: Improve accuracy of variance calculation (GH-27960)Raymond Hettinger2021-08-313-14/+23
* bpo-45019: Add a tool to generate list of modules to include for frozen modul...Eric Snow2021-08-3019-194/+828
* bpo-44756: Remove misleading NEWS entries of a change that was reverted befor...Łukasz Langa2021-08-302-9/+0
* bpo-45041: Increase coverage for sqlite3.Cursor.executescript() (GH-28074)Erlend Egeberg Aasland2021-08-301-0/+7
* bpo-16379: expose SQLite error codes and error names in `sqlite3` (GH-27786)Erlend Egeberg Aasland2021-08-308-32/+264
* bpo-43398: Add test for defect connection factories (GH-27966)Erlend Egeberg Aasland2021-08-301-10/+12
* bpo-43913: Fix bugs in cleaning up classes and modules in unittest. (GH-28006)Serhiy Storchaka2021-08-304-70/+719
* bpo-41620: TestCase.run() now always return a TestResult instance (GH-28030)Serhiy Storchaka2021-08-303-24/+34
* bpo-45007: Update multissl to openssl 1.1.1l as well (GH-28044)Łukasz Langa2021-08-301-1/+1
* bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043)Dong-hee Na2021-08-302-6/+30
* bpo 45007: Update macOS installer builds to use OpenSSL 1.1.1l. (GH-28051)Ned Deily2021-08-303-3/+64
* bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries wh...Tobias Bergkvist2021-08-302-3/+31
* bpo-45007: Update to OpenSSL 1.1.1l in Windows build and CI (GH-28009)Steve Dower2021-08-296-23/+24
* bpo-43124: Fix smtplib multiple CRLF injection (GH-25987)Miguel Brito2021-08-293-3/+65
* bpo-44394: Update libexpat copy to 2.4.1 (GH-26945)Victor Stinner2021-08-2922-191/+1389
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...E-Paine2021-08-292-6/+9
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-2936-14/+144
* bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021)Serhiy Storchaka2021-08-292-2/+5
* bpo-25130: Make unit-test about restricting the maximum number of nested bloc...Carl Friedrich Bolz-Tereick2021-08-281-32/+35
* bpo-44962: Fix a race in WeakKeyDict, WeakValueDict and WeakSet when two thre...Thomas Grainger2021-08-283-12/+28
* Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993)Adam Dangoor2021-08-271-1/+1
* Refine specialization stats (GH-27992)Mark Shannon2021-08-271-17/+89
* bpo-44997: macOS does not support loadable SQLite extensions (GH-27979)Erlend Egeberg Aasland2021-08-271-0/+2
* bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)chilaxan2021-08-273-17/+33
* Update ACKS (GH-27988)Soumendra Ganguly2021-08-271-0/+1
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-279-78/+253
* bpo-41818: ++ termios versionadded markers. (GH-27987)Gregory P. Smith2021-08-271-0/+4
* bpo-41818: Add termios.tcgetwinsize(), termios.tcsetwinsize(). (GH-23686)Soumendra Ganguly2021-08-274-1/+240
* bpo-45022: Pin current libffi build to fixed version in preparation for upcom...Steve Dower2021-08-263-9/+17
* bpo-40635: Fix getfqdn() docstring and docs (GH-27971)andrei kulakov2021-08-262-4/+6
* bpo-45010: Remove support of special method __div__ in unittest.mock (GH-27965)Serhiy Storchaka2021-08-263-2/+4
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...wouter bolsterlee2021-08-263-0/+6
* bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)Serhiy Storchaka2021-08-265-7/+13
* bpo-44967: pydoc: return non-zero exit code when query is not found (GH-27868)Gregory Anders2021-08-263-21/+25
* bpo-42238: [doc] Some more make suspicious false positives. (GH-27945)Julien Palard2021-08-261-0/+10
* bpo-45003: Change __div__ to __truediv__ in py3 language reference. (GH-27951)Objectivitix2021-08-261-1/+1
* bpo-45000: Update whatsnews about deleting __debug__ (GH-27956)Dong-hee Na2021-08-262-2/+2
* bpo-43853: Amend NEWS entry for latest changes in sqlite3 (GH-27922)Erlend Egeberg Aasland2021-08-251-3/+7
* bpo-44524: Don't modify MRO when inheriting from typing.Annotated (GH-27841)Ken Jin2021-08-252-1/+11
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)Dong-hee Na2021-08-254-0/+12
* bpo-44929: [Enum] Fix global repr (GH-27789)Pablo Galindo Salgado2021-08-253-15/+74
* bpo-27334: Fix reference leak introduced by GH-26202 (GH-27942)Erlend Egeberg Aasland2021-08-251-0/+1
* bpo-44946: Streamline operators and creation of ints for common case of singl...Mark Shannon2021-08-251-92/+160
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-258-100/+114
* Format the Python-tokenize module and fix exit path (GH-27935)Pablo Galindo Salgado2021-08-251-47/+46