summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-103395: Improve `typing._GenericAlias.__dir__` coverage (#103396)Nikita Sobolev2023-04-101-2/+61
* GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)Barney Gale2023-04-091-2/+0
* GH-103379: Fix up old tests for `pathlib.PurePath._parse_path` (GH-103380)Barney Gale2023-04-091-110/+97
* Gh-68586: use run_python_until_end in test_capi (GH-102729)Furkan Onder2023-04-091-11/+7
* Fix typos in test_tempfile.py (#102841)JakobDev2023-04-091-2/+2
* gh-103092: Isolate `socket` module (#103094)Erlend E. Aasland2023-04-091-0/+7
* gh-75729: Fix os.spawn tests not handling spaces on Windows (#99150)C.A.M. Gerlach2023-04-081-45/+57
* gh-103329: Add regression test for PropertyMock with side effect (#103358)Russell Keith-Magee2023-04-081-1/+22
* gh-103272: regression test for getattr exception in property (#103336)sunmy20192023-04-071-0/+13
* gh-103225: Fixed zero lineno issue for pdb (#103265)Tian Gao2023-04-071-0/+25
* gh-74690: Add more tests for runtime-checkable protocols (#103347)Alex Waygood2023-04-071-2/+39
* GH-88013: Fix TypeError raised by ntpath.realpath in some cases (GH-102813)AN Long2023-04-071-0/+7
* bpo-46523: fix tests rerun when `setUp[Class|Module]` fails (#30895)Nikita Sobolev2023-04-073-3/+184
* gh-103256: Fix hmac algorithm to support fallback implementation (gh-103286)Dong-hee Na2023-04-071-0/+10
* gh-93121: fix test_mailbox where some test cases were accidentally dropped (#...AGZain2023-04-061-22/+23
* GH-102700: allow built-in modules to be submodules (GH-103162)Brett Cannon2023-04-061-17/+0
* gh-103186: assert in tests that UnsafeMailcapInput warnings are provided (#10...Ijtaba Hussain2023-04-061-4/+24
* gh-48330: assert warning is emitted on unittest.TestResult with no addDuratio...Irit Katriel2023-04-061-1/+2
* gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)Irit Katriel2023-04-0612-71/+68
* gh-101659: Add _Py_AtExit() (gh-103298)Eric Snow2023-04-061-11/+29
* gh-93910: [Enum] remove member.member deprecation (GH-103236)Ethan Furman2023-04-061-21/+8
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-051-129/+129
* gh-89058: remove skip from test_no_hang_on_context_chain_cycle2 (#102903)Irit Katriel2023-04-051-1/+0
* gh-86094: Add support for Unicode Path Extra Field in ZipFile (gh-102566)Yeojin Kim2023-04-051-0/+27
* gh-66897: Upgrade HTTP CONNECT to protocol HTTP/1.1 (#8305)Michael Handler2023-04-051-15/+132
* GH-75586: Make shutil.which() on Windows more consistent with the OS (GH-103179)Charles Machalow2023-04-041-5/+81
* bpo-44844: Enable detection of Microsoft Edge browser in webbrowser module (G...Steve Dower2023-04-041-0/+25
* gh-103092: Isolate `_pickle` module (#102982)Erlend E. Aasland2023-04-041-0/+28
* GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...Barney Gale2023-04-031-1/+26
* gh-101865: Deprecate `co_lnotab` from code objects as per PEP 626 (#101866)Nikita Sobolev2023-04-031-0/+7
* gh-103109: Document ignore_warnings() test support helper (#103110)Charlie Zhao2023-04-021-1/+1
* bpo-4080: unittest durations (#12271)Giampaolo Rodola2023-04-025-22/+95
* gh-102433: Use `inspect.getattr_static` in `typing._ProtocolMeta.__instancech...Alex Waygood2023-04-021-2/+91
* gh-102549: [Enum] fail enum creation when data type raises in __init__ (GH-10...Ethan Furman2023-03-311-0/+20
* gh-101659: Clean Up the General Import Tests for Subinterpreters (gh-103151)Eric Snow2023-03-311-44/+106
* gh-102871: Remove obsolete browsers from webbrowser (#102872)James De Bias2023-03-311-28/+3
* gh-102799: use exception instance instead of sys.exc_info() (#102885)Irit Katriel2023-03-313-9/+9
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-292-2/+2
* gh-103068: Check condition expression of breakpoints for pdb (#103069)gaogaotiantian2023-03-291-1/+17
* 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-271-1/+0
* gh-103056: [Enum] ensure final _generate_next_value_ is a staticmethod (GH-10...Ethan Furman2023-03-271-0/+17
* gh-74468: [tarfile] Fix incorrect name attribute of ExFileObject (GH-102424)Oleg Iarygin2023-03-271-0/+7
* gh-103046: Display current line correctly for `dis.disco()` with CACHE entrie...gaogaotiantian2023-03-271-0/+29
* gh-103023: Add SyntaxError check in pdb's `display` command (#103024)gaogaotiantian2023-03-271-0/+6
* gh-98886: Fix issues with dataclass fields with special underscore names (#10...Shantanu2023-03-251-0/+17
* gh-100131: Add optional delete parameter to tempfile.TemporaryDirectory() (#1...JakobDev2023-03-241-0/+6
* 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-231-2/+32