summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-222-19/+9
* gh-102780: Fix uncancel() call in asyncio timeouts (#102815)Kristján Valur Jónsson2023-03-221-0/+30
* GH-89727: Fix pathlib.Path.walk RecursionError on deep trees (GH-100282)Stanislav Zmiev2023-03-221-0/+13
* 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-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-211-5/+11
* 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-201-4/+9
* 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-191-17/+7
* gh-102828: add onexc arg to shutil.rmtree. Deprecate onerror. (#102829)Irit Katriel2023-03-191-3/+167
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-182-2/+12
* 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-161-0/+6
* gh-102721: Improve coverage of `_collections_abc._CallableGenericAlias` (#102...Nikita Sobolev2023-03-161-7/+32
* 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-161-0/+28
* GH-100112: avoid using iterable coroutines in asyncio internally (#100128)Kumar Aditya2023-03-161-0/+15
* 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-151-0/+45
* gh-101377: improving test_locale_calendar_formatweekday of calendar (#101378)Andre Hora2023-03-151-2/+6
* gh-102519: Avoid failing tests due to inaccessible volumes (GH-102706)Steve Dower2023-03-151-6/+11
* Rename redundant enum tests so that they run (#102535)JosephSBoyle2023-03-141-3/+2
* gh-102674: Remove _specialization_stats from Lib/opcode.py (#102685)Dong-hee Na2023-03-141-2/+1
* gh-81057: Add a CI Check for New Unsupported C Global Variables (gh-102506)Eric Snow2023-03-141-34/+0
* GH-102670: Use sumprod() to simplify, speed up, and improve accuracy of stati...Raymond Hettinger2023-03-141-1/+11
* gh-102069: Fix `__weakref__` descriptor generation for custom dataclasses (#1...Nikita Sobolev2023-03-131-4/+11
* gh-98169 dataclasses.astuple support DefaultDict (#98170)T2023-03-131-4/+17
* gh-87092: refactor assemble() to a number of separate functions, which do not...Irit Katriel2023-03-132-17/+28
* Fix broken link to MSDN (#102355)谭九鼎2023-03-131-1/+1
* GH-101673: Fix pdb bug where local variable changes are lost after longlist (...gaogaotiantian2023-03-121-0/+29
* gh-101821: Test coverage for `ast.main` function (#101822)Nikita Sobolev2023-03-111-0/+20
* gh-79940: skip `TestGetAsyncGenState` on wasm as it requires working sockets ...Thomas Krennwallner2023-03-111-1/+3
* gh-79940: add introspection API for asynchronous generators to `inspect` modu...Thomas Krennwallner2023-03-111-0/+107
* gh-102433: Add tests for how classes with properties interact with `isinstanc...Alex Waygood2023-03-111-0/+88
* GH-90997: Shrink the LOAD_GLOBAL caches (#102569)Brandt Bucher2023-03-111-146/+146
* gh-102103: add `module` argument to `dataclasses.make_dataclass` (#102104)Nikita Sobolev2023-03-111-0/+39
* gh-102578: Optimise setting and deleting mutable attributes on non-dataclass ...Xuehai Pan2023-03-111-0/+44
* GH-80486: Fix handling of NTFS alternate data streams in pathlib (GH-102454)Barney Gale2023-03-101-1/+27
* GH-102537: Handle check for PYTHONTZPATH failing in zoneinfo test (GH-102538)Paul Ganssle2023-03-101-1/+8
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-101-0/+43
* gh-102378: don't bother stripping `/` from __text_signature__ (#102379)David Hewitt2023-03-091-16/+7
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-3/+5