summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* gh-74690: Micro-optimise `typing._get_protocol_attrs` (#103152)Alex Waygood2023-03-311-8/+12
* gh-102549: [Enum] fail enum creation when data type raises in __init__ (GH-10...Ethan Furman2023-03-312-14/+31
* gh-101659: Clean Up the General Import Tests for Subinterpreters (gh-103151)Eric Snow2023-03-311-44/+106
* gh-74690: typing: Don't unnecessarily call `_get_protocol_attrs` twice in `_P...Alex Waygood2023-03-311-10/+21
* gh-102871: Remove obsolete browsers from webbrowser (#102872)James De Bias2023-03-312-106/+16
* gh-102799: use exception instance instead of sys.exc_info() (#102885)Irit Katriel2023-03-317-17/+16
* gh-103085: Fix python locale.getencoding not to emit deprecation warning (gh-...Jeong, YunWon2023-03-301-1/+3
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-294-5/+5
* gh-103112: Add http.client.HTTPResponse.read docstring and fix pydoc output (...Bernhard Wagner2023-03-291-0/+1
* gh-103068: Check condition expression of breakpoints for pdb (#103069)gaogaotiantian2023-03-292-13/+43
* gh-103054: typing: Improve `Callable` type substitution tests (#103055)Nikita Sobolev2023-03-291-0/+42
* gh-102558: [Enum] better handling of non-Enum EnumType classes (GH-103060)Ethan Furman2023-03-272-8/+5
* gh-103056: [Enum] ensure final _generate_next_value_ is a staticmethod (GH-10...Ethan Furman2023-03-272-0/+22
* gh-74468: [tarfile] Fix incorrect name attribute of ExFileObject (GH-102424)Oleg Iarygin2023-03-272-3/+10
* gh-103046: Display current line correctly for `dis.disco()` with CACHE entrie...gaogaotiantian2023-03-272-1/+35
* gh-103023: Add SyntaxError check in pdb's `display` command (#103024)gaogaotiantian2023-03-272-13/+24
* Fix typo in _swappedbytes_ in ctypes comment (#102773)Matthias Görgens2023-03-251-1/+1
* gh-98886: Fix issues with dataclass fields with special underscore names (#10...Shantanu2023-03-252-10/+26
* gh-103027: Update `dataclass.make_dataclass` docstring (gh-103028)Nikita Sobolev2023-03-251-2/+5
* GH-102833: Mention the key function in the docstrings (GH-103009)Raymond Hettinger2023-03-251-0/+8
* gh-100131: Add optional delete parameter to tempfile.TemporaryDirectory() (#1...JakobDev2023-03-242-7/+24
* gh-102980: Add tests for pdf's display, alias and where commands (#102981)gaogaotiantian2023-03-241-0/+150
* gh-100372: Use BIO_eof to detect EOF for SSL_FILETYPE_ASN1 (GH-100373)David Benjamin2023-03-241-0/+2
* gh-94684: uuid: support bytes in the name argument to uuid3/5 (#94709)MonadChains2023-03-232-4/+38
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-234-20/+15
* gh-102558: [Enum] fix AttributeError during member repr() (GH-102601)Dong-hee Na2023-03-232-1/+10
* Move binomialvariate() to a section for discrete distributions (GH-102955)Raymond Hettinger2023-03-231-20/+25
* gh-102943: Stop checking localized error text in socket tests on Windows (GH-...AN Long2023-03-231-2/+1
* gh-88965: typing: fix type substitution of a list of types after initial `Pa...Nikita Sobolev2023-03-232-7/+147
* gh-102947: Improve traceback when calling `fields()` on a non-dataclass (#102...Alex Waygood2023-03-232-1/+13
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-224-22/+11
* gh-102780: Fix uncancel() call in asyncio timeouts (#102815)Kristján Valur Jónsson2023-03-222-3/+34
* GH-89727: Fix pathlib.Path.walk RecursionError on deep trees (GH-100282)Stanislav Zmiev2023-03-222-38/+53
* gh-96931: Fix incorrect results in ssl.SSLSocket.shared_ciphers (#96932)Benjamin Fogle2023-03-221-3/+3
* gh-101947: Remove size check from sqlite3 serialize test (#102914)Erlend E. Aasland2023-03-221-1/+0
* gh-101313: Add -h and --help arguments to the webbrowser module (gh-101374)Icelain2023-03-221-3/+7
* GH-95494: Fix transport EOF handling in OpenSSL 3.0 (GH-95495)David Benjamin2023-03-221-3/+15
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-64/+42
* gh-102876: remove superfluous parens from itertools.batched recipe (GH-102877)wim glenn2023-03-211-1/+1
* gh-102828: emit deprecation warning for onerror arg to shutil.rmtree (#102850)Irit Katriel2023-03-213-9/+21
* gh-102799: Let pydoc use the exception instead of sys.exc_info (#102830)Irit Katriel2023-03-211-14/+22
* gh-102755: PyErr_DisplayException only in ABI >= 3.12. Tests cover PyErr_Disp...Irit Katriel2023-03-211-1/+15
* gh-72346: Added isdst deprecation warning to email.utils.localtime (GH-91450)Alan Williams2023-03-202-33/+20
* gh-102828: fix test failure (add missing skip instructions) (#102835)Irit Katriel2023-03-201-0/+4
* gh-102491: Remove IronPython version check in sys_version (#102492)Pieter Eendebak2023-03-192-51/+8
* gh-102810: Add docstrings to the public-facing methods of `asyncio.Timeout` (...JosephSBoyle2023-03-191-0/+12
* gh-102828: add onexc arg to shutil.rmtree. Deprecate onerror. (#102829)Irit Katriel2023-03-192-47/+229
* gh-102778: revert changes to idlelib (#102825)Irit Katriel2023-03-194-24/+9
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-1812-22/+61
* gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)Irit Katriel2023-03-185-124/+124