summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-102701: Fix overflow in dictobject.c (GH-102750)Inada Naoki2023-03-171-0/+9
* GH-78530: add support for generators in `asyncio.wait` (#102761)Kumar Aditya2023-03-171-0/+16
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-161-0/+1
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-1/+11
* GH-102748: remove legacy support for generator based coroutines from `asyncio...Kumar Aditya2023-03-162-2/+7
* gh-102721: Improve coverage of `_collections_abc._CallableGenericAlias` (#102...Nikita Sobolev2023-03-162-14/+32
* Add comments to `{typing,_collections_abc}._type_repr` about each other (#102...Nikita Sobolev2023-03-162-2/+4
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+20
* gh-94440: Fix issue of ProcessPoolExecutor shutdown hanging (#94468)yonatanp2023-03-162-0/+33
* GH-100112: avoid using iterable coroutines in asyncio internally (#100128)Kumar Aditya2023-03-162-16/+21
* gh-102690: Use Edge as fallback in webbrowser instead of IE (#102691)Jamoo7212023-03-161-4/+8
* Fix typo in code comment (#102726)Martin Breuss2023-03-151-1/+1
* gh-102615: Use `list` instead of `tuple` in `repr` of paramspec (#102637)Nikita Sobolev2023-03-152-3/+49
* gh-101377: improving test_locale_calendar_formatweekday of calendar (#101378)Andre Hora2023-03-151-2/+6
* gh-102560 Add docstrings to asyncio.TaskGroup (#102565)JosephSBoyle2023-03-151-0/+18