summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-102549: [Enum] fail enum creation when data type raises in __init__ (GH-10...Miss Islington (bot)2023-04-031-0/+20
* gh-103109: Document ignore_warnings() test support helper (GH-103110)Miss Islington (bot)2023-04-021-1/+1
* gh-103054: typing: Improve `Callable` type substitution tests (GH-103055)Miss Islington (bot)2023-03-291-0/+42
* gh-102558: [Enum] better handling of non-Enum EnumType classes (GH-103060)Miss Islington (bot)2023-03-271-1/+0
* [3.11] GH-95494: Fix transport EOF handling in OpenSSL 3.0 (GH-95495) (#103006)Miss Islington (bot)2023-03-271-3/+15
* gh-102980: Add tests for pdf's display, alias and where commands (GH-102981)Miss Islington (bot)2023-03-241-0/+150
* [3.11] gh-96931: Fix incorrect results in ssl.SSLSocket.shared_ciphers (GH-96...Miss Islington (bot)2023-03-241-3/+3
* gh-102558: [Enum] fix AttributeError during member repr() (GH-102601)Miss Islington (bot)2023-03-231-1/+8
* gh-88965: typing: fix type substitution of a list of types after initial `Pa...Miss Islington (bot)2023-03-231-0/+121
* gh-102947: Improve traceback when calling `fields()` on a non-dataclass (GH-1...Miss Islington (bot)2023-03-231-0/+12
* gh-102780: Fix uncancel() call in asyncio timeouts (GH-102815)Miss Islington (bot)2023-03-221-0/+30
* gh-101947: Remove size check from sqlite3 serialize test (GH-102914)Miss Islington (bot)2023-03-221-1/+0
* [3.11] gh-102721: Improve coverage of `_collections_abc._CallableGenericAlias...Nikita Sobolev2023-03-171-7/+32
* gh-102701: Fix overflow in dictobject.c (GH-102750)Miss Islington (bot)2023-03-171-0/+9
* gh-94440: Fix issue of ProcessPoolExecutor shutdown hanging (GH-94468)Miss Islington (bot)2023-03-161-0/+28
* gh-101377: improving test_locale_calendar_formatweekday of calendar (GH-101378)Miss Islington (bot)2023-03-151-2/+6
* Rename redundant enum tests so that they run (GH-102535)Miss Islington (bot)2023-03-141-3/+2
* [3.11] gh-102069: Fix `__weakref__` descriptor generation for custom dataclas...Miss Islington (bot)2023-03-131-4/+11
* Fix broken link to MSDN (GH-102355)Miss Islington (bot)2023-03-131-1/+1
* GH-101673: Fix pdb bug where local variable changes are lost after longlist (...Miss Islington (bot)2023-03-121-0/+29
* [3.11] gh-102493: backport unit test for PyErr_SetObject (#102602)Irit Katriel2023-03-111-0/+28
* gh-102433: Add tests for how classes with properties interact with `isinstanc...Miss Islington (bot)2023-03-111-0/+88
* GH-102537: Handle check for PYTHONTZPATH failing in zoneinfo test (GH-102538)Miss Islington (bot)2023-03-101-1/+8
* GH-102397: Fix segfault from race condition in signal handling (GH-102399)Miss Islington (bot)2023-03-081-0/+15
* gh-102444: Fix minor bugs in `test_typing` highlighted by pyflakes (GH-102445)Miss Islington (bot)2023-03-051-19/+2
* GH-102341: Improve the test function for pow (GH-102342)Miss Islington (bot)2023-03-051-6/+5
* Fix unused classes in a typing test (GH-102437)Miss Islington (bot)2023-03-051-2/+2
* gh-101979: argparse: fix a bug where parentheses in metavar argument of add_a...Miss Islington (bot)2023-03-051-0/+22
* gh-102356: Add thrashcan macros to filter object dealloc (GH-102426)Miss Islington (bot)2023-03-051-0/+10
* gh-102179: Fix `os.dup2` error reporting for negative fds (GH-102180)Miss Islington (bot)2023-03-041-0/+20
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Miss Islington (bot)2023-03-041-0/+25
* [3.11] gh-102088 Optimize iter_index itertools recipe (GH-102360) (GH-102363)Miss Islington (bot)2023-03-021-0/+3
* gh-102252: Improve coverage of test_bool.py (GH-102253)Miss Islington (bot)2023-02-251-0/+6
* [3.11] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` w...Ionite2023-02-251-0/+81
* [3.11] gh-95675: fix uid and gid at test_add_dir_getmember (gh-102207) (gh-10...Miss Islington (bot)2023-02-251-6/+7
* gh-102158: Add tests for `softkwlist` (GH-102159)Miss Islington (bot)2023-02-241-0/+18
* [3.11] gh-101936: Update the default value of fp from io.StringIO to io.Bytes...Miss Islington (bot)2023-02-221-0/+1
* [3.11] gh-95672 fix typo SkitTest to SkipTest (gh-102119) (#102121)Miss Islington (bot)2023-02-222-2/+2
* gh-102008: simplify test_except_star by using sys.exception() instead of sys....Miss Islington (bot)2023-02-211-25/+19
* [3.11] gh-101961 fileinput.hookcompressed should not set the encoding value f...Miss Islington (bot)2023-02-211-11/+28
* [3.11] gh-101566: Sync with zipp 3.14. (GH-102018). (GH-102090)Jason R. Coombs2023-02-201-0/+11
* gh-88233: zipfile: handle extras after a zip64 extra (GH-96161)Miss Islington (bot)2023-02-201-0/+62
* gh-101517: make bdb avoid looking up in linecache with lineno=None (GH-101787)Miss Islington (bot)2023-02-101-0/+6
* [3.11] gh-100933: Improve `check_element` helper in `test_xml_etree` (GH-1009...Miss Islington (bot)2023-02-081-23/+4
* [3.11] gh-96127: Fix `inspect.signature` call on mocks (#96335) (#101646)Oleg Iarygin2023-02-081-0/+19
* [3.11] Make use of TESTFN_ASCII in test_fileio (GH-101645) (#101650)Miss Islington (bot)2023-02-081-7/+6
* [3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.1...Ɓukasz Langa2023-02-071-0/+56
* [3.11] gh-101266: Revert fix __sizeof__ for subclasses of int (#101638)Mark Dickinson2023-02-071-39/+0
* gh-101562: typing: add tests for inheritance with NotRequired & Required in p...Miss Islington (bot)2023-02-061-0/+33
* gh-101541: [Enum] create flag psuedo-member without calling original __new__ ...Miss Islington (bot)2023-02-061-0/+40