summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-96272: Replace `test_source_encoding`'s `test_pep263` with `test_import_en...Michael Droettboom2022-08-252-15/+10
* gh-92445 Improve interaction between nargs="*" and choices() (GH-92565)Harry2022-08-251-0/+7
* gh-76728: Coerce DictReader and DictWriter fieldnames argument to a list (GH-...Sam Ezeh2022-08-251-0/+28
* gh-95243: Mitigate the race condition in testSockName (#96173)Ross Burton2022-08-251-2/+13
* GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...Pablo Galindo Salgado2022-08-241-0/+59
* gh-96021: Explicitly close the IsolatedAsyncioTestCase runner in tests (GH-96...Serhiy Storchaka2022-08-241-2/+7
* gh-93678: add _testinternalcapi.optimize_cfg() and test utils for compiler op...Irit Katriel2022-08-242-1/+170
* GH-96145: Add AttrDict to JSON module for use with object_hook (#96146)Raymond Hettinger2022-08-232-0/+146
* gh-96189: Fix test_invalid_utf8 on a number of build bots (GH-96190)Michael Droettboom2022-08-231-43/+43
* gh-96175: add missing self._localName assignment in `xml.dom.minidom.Attr` (#...Kevin Kirsche2022-08-231-1/+15
* gh-96197: Add `del sys.breakpointhook` behavior test (gh-96198)Jeong YunWon2022-08-231-0/+5
* GH-96071: add regression test for #96071 (GH-96137)Kumar Aditya2022-08-221-0/+15
* gh-96076: Change test_launcher to use non-admin location for py.ini (GH-96091)Terry Jan Reedy2022-08-221-3/+5
* gh-96125: Fix sys.thread_info.name on pthread platforms (GH-96126)Christian Heimes2022-08-191-0/+8
* GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)Brandt Bucher2022-08-191-6/+11
* GH-95861: Add support for Spearman's rank correlation coefficient (GH-95863)Raymond Hettinger2022-08-181-0/+16
* gh-95813: Improve HTMLParser from the view of inheritance (#95874)Dong-hee Na2022-08-181-0/+14
* gh-95913: make the new internal classes pdb.ModuleTarget/ScriptTarget private...Irit Katriel2022-08-181-1/+1
* GH-95589: Dont crash when subclassing extension classes with multiple inherit...Mark Shannon2022-08-171-11/+33
* gh-95991: Add some infrastructure for testing Limited API in _testcapi (GH-95...Petr Viktorin2022-08-172-4/+12
* gh-96005: FreeBSD has ENOTCAPABLE, too (GH-96034)Christian Heimes2022-08-171-2/+4
* GH-95704: Don't suppress errors from tasks when TG is cancelled (#95761)Guido van Rossum2022-08-171-24/+30
* gh-94823: Improve coverage in tokenizer.c:valid_utf8 (GH-94856)Michael Droettboom2022-08-161-0/+61
* GH-95736: fix IsolatedAsyncioTestCase to initialize Runner before calling set...Kumar Aditya2022-08-161-0/+15
* GH-95245: Move weakreflist into the pre-header. (GH-95996)Mark Shannon2022-08-161-0/+31
* GH-94808: Test __build_class__ inside non-dict __builtins__ (GH-95932)Michael Droettboom2022-08-151-5/+9
* GH-95899: fix asyncio.Runner to call set_event_loop only once (#95900)Kumar Aditya2022-08-151-0/+14
* GH-95707: Fix uses of `Py_TPFLAGS_MANAGED_DICT` (GH-95854)Mark Shannon2022-08-152-1/+25
* gh-95853: Address wasm build and test issues (GH-95985)Christian Heimes2022-08-151-1/+2
* gh-95853: Add script to automate WASM build (GH-95828)Christian Heimes2022-08-132-1/+13
* gh-90928: Improve static initialization of keywords tuple in AC (#95907)Erlend E. Aasland2022-08-131-432/+192
* gh-94909: fix joining of absolute and relative Windows paths in pathlib (GH-...Barney Gale2022-08-121-0/+4
* gh-94996: Disallow lambda pos only params with feature_version < (3, 8) (GH-9...Shantanu2022-08-121-0/+7
* gh-94996: Disallow parsing pos only params with feature_version < (3, 8) (GH-...Shantanu2022-08-122-2/+10
* gh-95724: Clarify taskgroups.py license. (#95847)Yury Selivanov2022-08-111-1/+2
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-111-48/+840
* GH-95818: Skip incomplete frames in `PyThreadState_GetFrame` (GH-95886)Mark Shannon2022-08-111-0/+22
* gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...Mark Dickinson2022-08-101-0/+4
* gh-95804: Respect MemoryHandler.flushOnClose in logging shutdown. (GH-95857)David Bonner2022-08-101-0/+29
* gh-95349: Hide a Distutils Warning Filter for test_check_c_globals (GH-95837)Eric Snow2022-08-091-1/+6
* Disable Limited API tests with Py_TRACE_REFS (GH-95796)Petr Viktorin2022-08-091-0/+4
* gh-95781: More strict format string checking in PyUnicode_FromFormatV() (GH-9...Serhiy Storchaka2022-08-081-13/+10
* gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)Petr Viktorin2022-08-082-0/+7
* gh-91838: Resolve more HTTP links which redirect to HTTPS (GH-95650)Serhiy Storchaka2022-08-081-1/+1
* gh-95388: Suppress deprecation warning in test_immutable_type_with_mutable_ba...Erlend E. Aasland2022-08-081-0/+1
* gh-88339: enable fast seeking of uncompressed unencrypted zipfile.ZipExtFile ...JuniorJPDJ2022-08-061-0/+2
* gh-95376: Add test for names containing null (#GH-5394)Sion Kang2022-08-061-0/+2
* gh-95395: Add argument type error test (GH-95412)Sion Kang2022-08-061-1/+3
* Fix typo in test_dataclasses.py (gh-95735)da-woods2022-08-061-2/+2
* gh-93243: Make smtpd private before porting its users (GH-93246)Oleg Iarygin2022-08-065-1023/+881