summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-44468: Never skip base classes in `typing.get_type_hints()`, even with in...will-ca2021-06-263-11/+21
* Update vendored pip to 21.1.3 (GH-26912)Stéphane Bidoul2021-06-263-1/+2
* bpo-43977: Properly update the tp_flags of existing subclasses when their par...Brandt Bucher2021-06-254-34/+129
* bpo-44498: suppress DeprecationWarnings for asynchat, asyncore and smtpd in t...Irit Katriel2021-06-249-16/+51
* bpo-44498: Issue a deprecation warning on asynchat, asyncore and smtpd import...Barry Warsaw2021-06-246-9/+40
* bpo-44321: Adds `os.EX_OK` for Windows (GH-26559)Samuel Marks2021-06-242-2/+7
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-246-464/+672
* bpo-44491: Allow clearing the sqlite3 authoriser callback (GH-26863)Erlend Egeberg Aasland2021-06-246-6/+33
* Make sure that line number is set correctly for call to __exit__ when handlin...Mark Shannon2021-06-245-4505/+4522
* Fix typo in whatsnew 3.10.rst (GH-26854)Arnon Yaari2021-06-241-1/+1
* bpo-40939: Remove documentation for `PyParser_*` & add porting notes (GH-26855)Petr Viktorin2021-06-245-98/+41
* bpo-40528: move asdl identifier collection to the new metadata system (GH-26858)Batuhan Taskaya2021-06-241-49/+51
* bpo-44229: Ignore spurious EPROTOTYPE on macOS in test_ssl (GH-26893)Erlend Egeberg Aasland2021-06-241-3/+8
* bpo-43553: Improve `sqlite3` test coverage (GH-26886)Erlend Egeberg Aasland2021-06-244-2/+100
* bpo-43988: Fix test.support.check_disallow_instantiation version added (GH-26...Erlend Egeberg Aasland2021-06-241-1/+1
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-2310-260/+239
* bpo-42862: Strip stale sqlite3 cache ignores from c-analyzer (GH-26876)Erlend Egeberg Aasland2021-06-231-5/+0
* bpo-39947: Remove old private trashcan C API functions (GH-26869)Victor Stinner2021-06-235-78/+30
* bpo-43770: Cleanup PyModuleDef_Init() (GH-26879)Victor Stinner2021-06-231-2/+1
* bpo-42064: Move `sqlite3` exceptions to global state, part 1 of 2 (GH-26745)Erlend Egeberg Aasland2021-06-238-49/+67
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874)Victor Stinner2021-06-236-8/+85
* bpo-42064: Remove stale extern declarations in `sqlite3` headers (GH-26840)Erlend Egeberg Aasland2021-06-236-24/+0
* bpo-44404: tkinter `after` support callable classes (GH-26812)E-Paine2021-06-233-1/+13
* bpo-44482: Fix very unlikely resource leak in glob in non-CPython implementat...Serhiy Storchaka2021-06-232-2/+9
* bpo-28395: Remove unnecessary semicolons in tests (GH-26868)Dong-hee Na2021-06-238-31/+32
* bpo-44486: Make sure that modules always have a dictionary. (GH-26847)Mark Shannon2021-06-234-52/+66
* Fix typo in test_typing.py (GH-26853)Ikko Ashimine2021-06-221-1/+1
* bpo-43918: document signature and default argument of `anext` builtin (#25551)Erik Welch2021-06-223-4/+11
* [doc] Improve punctuation atexit docGéry Ogam2021-06-221-7/+8
* bpo-40528: Implement a metadata system for ASDL Generator (GH-20193)Batuhan Taskaya2021-06-221-24/+75
* bpo-41621: Document defaultdict's default_factory parameter (GH-21945)Dennis Sweeney2021-06-223-3/+4
* bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848)Ken Jin2021-06-223-3/+25
* bpo-44439: BZ2File.write() / LZMAFile.write() handle buffer protocol correctl...Ma Lin2021-06-227-9/+55
* bpo-44458: Ensure BUFFER_BLOCK_SIZE symbol is statically allocated. (GH-26808)Russell Keith-Magee2021-06-222-1/+2
* bpo-44287: asyncio test_popen() uses longer timeout (GH-26832)Victor Stinner2021-06-212-1/+6
* bpo-13814: Explain why generators are not context managers (GH-26835)Terry Jan Reedy2021-06-212-0/+10
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-2114-5394/+5454
* Reset DeprecationWarning filters in test_typing io and re (#26811)Ken Jin2021-06-212-1/+3
* bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822)Pablo Galindo2021-06-212-0/+4
* bpo-44395: Fix MIMEPart.as_string to pass unixfrom properly (GH-26685)Dong-hee Na2021-06-213-2/+11
* bpo-44434: Don't call PyThread_exit_thread() explicitly (GH-26758)Victor Stinner2021-06-212-1/+7
* bpo-44466: Faulthandler now detects the GC (GH-26823)Victor Stinner2021-06-215-14/+70
* bpo-44337: Improve LOAD_ATTR specialization (GH-26759)Mark Shannon2021-06-213-72/+179
* bpo-44297: Fix missing line number in generator expressions (GH-26801)Mark Shannon2021-06-214-952/+971
* bpo-44469: Fix tests for "async with" with bad object (GH-26817)Serhiy Storchaka2021-06-211-6/+12
* bpo-44077: Expose IP_RECVTOS in the socket module (GH-25992)Georg Sauthoff2021-06-204-0/+12
* Fix typos and grammatical changes in the 3.10 what's new document (GH-26319)Hemangii2021-06-201-1/+1
* bpo-44430: Refactor `sqlite3` threading tests (GH-26748)Erlend Egeberg Aasland2021-06-201-140/+36
* bpo-44087: Disallow instantiation of sqlite3.Statement (GH-26567)Erlend Egeberg Aasland2021-06-202-1/+6
* bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC (GH-...Erlend Egeberg Aasland2021-06-206-71/+298