summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-44471: Change error type for bad objects in ExitStack.enter_context() (GH...Serhiy Storchaka2021-06-293-8/+72
* bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...Serhiy Storchaka2021-06-293-8/+8
* bpo-44464: Remove special exclusion for flake8 in the deprecation warnings. (...Jason R. Coombs2021-06-271-9/+1
* Clarify the order of a stacked `abstractmethod` (GH-26892)Ram Rachum2021-06-271-3/+24
* bpo-44110: Improve string's __getitem__ error message (GH-26042)Miguel Brito2021-06-272-2/+10
* bpo-44468: Never skip base classes in `typing.get_type_hints()`, even with in...will-ca2021-06-262-11/+19
* Update vendored pip to 21.1.3 (GH-26912)Stéphane Bidoul2021-06-262-1/+1
* bpo-43977: Properly update the tp_flags of existing subclasses when their par...Brandt Bucher2021-06-251-23/+87
* 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-244-4/+30
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-241-0/+24
* bpo-44491: Allow clearing the sqlite3 authoriser callback (GH-26863)Erlend Egeberg Aasland2021-06-242-0/+7
* Make sure that line number is set correctly for call to __exit__ when handlin...Mark Shannon2021-06-241-7/+24
* 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-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-232-14/+10
* bpo-42064: Move `sqlite3` exceptions to global state, part 1 of 2 (GH-26745)Erlend Egeberg Aasland2021-06-231-0/+18
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874)Victor Stinner2021-06-231-3/+14
* bpo-44404: tkinter `after` support callable classes (GH-26812)E-Paine2021-06-232-1/+12
* bpo-44482: Fix very unlikely resource leak in glob in non-CPython implementat...Serhiy Storchaka2021-06-231-2/+7
* 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-231-11/+2
* Fix typo in test_typing.py (GH-26853)Ikko Ashimine2021-06-221-1/+1
* bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848)Ken Jin2021-06-221-0/+9
* bpo-44439: BZ2File.write() / LZMAFile.write() handle buffer protocol correctl...Ma Lin2021-06-226-9/+52
* bpo-44287: asyncio test_popen() uses longer timeout (GH-26832)Victor Stinner2021-06-211-1/+2
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-212-4/+5
* Reset DeprecationWarning filters in test_typing io and re (#26811)Ken Jin2021-06-211-0/+2
* bpo-44395: Fix MIMEPart.as_string to pass unixfrom properly (GH-26685)Dong-hee Na2021-06-212-2/+9
* bpo-44466: Faulthandler now detects the GC (GH-26823)Victor Stinner2021-06-211-14/+53
* bpo-44297: Fix missing line number in generator expressions (GH-26801)Mark Shannon2021-06-211-0/+15
* bpo-44469: Fix tests for "async with" with bad object (GH-26817)Serhiy Storchaka2021-06-211-6/+12
* 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-201-0/+5
* bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC (GH-...Erlend Egeberg Aasland2021-06-201-0/+21
* bpo-38291: DeprecationWarning when importing typing.{io,re} (#26719)Sebastian Rittau2021-06-193-16/+34
* bpo-43945: [Enum] reduce scope of new format() behavior (GH-26752)Ethan Furman2021-06-184-25/+196
* bpo-44451: Reset DeprecationWarning filters in test_importlib.test_entry_poin...Miro Hrončok2021-06-181-0/+1
* Reorganize the pattern matching suite (GH-26661)Brandt Bucher2021-06-181-548/+497
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-181-1/+1
* bpo-43024: improve signature (in help, etc) for functions taking sent… (GH-...Irit Katriel2021-06-172-1/+20
* Do not clear globals or builtins when calling clear() on a frame object. Reve...Mark Shannon2021-06-171-0/+13
* bpo-44389: Fix typo in ssl deprecation warning message (GH-26754)Joe2021-06-171-1/+1
* bpo-44422: threading.Thread reuses the _delete() method (GH-26741)Victor Stinner2021-06-161-7/+1
* bpo-44342: [Enum] sync current docs to 3.10 (GH-26750)Ethan Furman2021-06-162-3/+3
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-152-22/+23
* [Enum] improve test, add andrei kulakov to ACKS (GH-26726)Ethan Furman2021-06-151-0/+23
* bpo-44422: Fix threading.enumerate() reentrant call (GH-26727)Victor Stinner2021-06-151-3/+6
* Fix a typo in _make_class_unpicklable() docstring (GH-26729)andrei kulakov2021-06-151-1/+1
* bpo-44409: Fix error location in tokenizer errors that happen during initiali...Pablo Galindo2021-06-141-0/+1