summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-45310: Fix parrallel shared memory tests (GH-28661) (GH-28670)Serhiy Storchaka2021-10-011-16/+24
* Revert "Revert "bpo-45229: Make datetime tests discoverable (GH-28615). (GH-2...Serhiy Storchaka2021-10-011-47/+47
* Revert "bpo-45229: Make datetime tests discoverable (GH-28615). (GH-28645)" (...Łukasz Langa2021-09-301-47/+47
* [3.9] bpo-45229: Make datetime tests discoverable (GH-28615). (GH-28645)Serhiy Storchaka2021-09-301-47/+47
* [3.9] bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-286...Serhiy Storchaka2021-09-303-51/+33
* [typo] Fix threading.Barrier comment that used confusing punctuation (GH-2862...Miss Islington (bot)2021-09-291-1/+1
* [3.9] bpo-39039: tarfile raises descriptive exception from zlib.error (GH-277...Łukasz Langa2021-09-292-0/+23
* bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540) (GH-28610)Miss Islington (bot)2021-09-281-0/+9
* bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595) ...Miss Islington (bot)2021-09-281-6/+12
* bpo-45296: Fix exit/quit message on Windows (GH-28577) (GH-28601)Miss Islington (bot)2021-09-282-0/+14
* bpo-1596321: Fix threading._shutdown() for the main thread (GH-28549) (GH-28589)Victor Stinner2021-09-272-8/+50
* bpo-45274: Fix Thread._wait_for_tstate_lock() race condition (GH-28532)Miss Islington (bot)2021-09-271-4/+17
* bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) (GH-28...Miss Islington (bot)2021-09-261-0/+13
* [3.9] bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) (GH-28561)Łukasz Langa2021-09-254-11/+55
* bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28544)Miss Islington (bot)2021-09-241-1/+1
* [3.9] bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) (GH-...Łukasz Langa2021-09-223-62/+132
* [3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)Łukasz Langa2021-09-2213-28/+28
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...Miss Islington (bot)2021-09-212-29/+70
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28506)Miss Islington (bot)2021-09-211-40/+0
* bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28...Miss Islington (bot)2021-09-211-0/+7
* [3.9] bpo-45021: Fix a hang in forked children (GH-28007) (GH-28481)Miss Islington (bot)2021-09-202-0/+20
* bpo-45229: Make pickle tests discoverable (GH-28467) (GH-28479)Miss Islington (bot)2021-09-203-47/+36
* bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466) (G...Miss Islington (bot)2021-09-201-0/+8
* [3.9] bpo-45229: Remove test_main in many tests (GH-28405) (GH-28456)Serhiy Storchaka2021-09-2061-472/+211
* bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)Miss Islington (bot)2021-09-182-1/+75
* bpo-45235: Fix argparse overrides namespace with subparser defaults (GH-28420...Miss Islington (bot)2021-09-182-6/+13
* Fix missing space with help for `-m compileall -o` (GH-27591) (GH-28431)Miss Islington (bot)2021-09-171-3/+3
* bpo-45187: Fix dangling threads in test_socket.CreateServerFunctionalTest (GH...Miss Islington (bot)2021-09-171-9/+3
* [3.9] bpo-45187: Collect test_socket tests using unittest (GH-28317) (GH-28413)Łukasz Langa2021-09-171-78/+5
* [3.9] bpo-45212: Fix dangling threads in skipped tests in test_socket (GH-283...Serhiy Storchaka2021-09-171-11/+8
* bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354) ...Victor Stinner2021-09-161-13/+14
* bpo-45205: Make test_compileall quiet (GH-28356) (GH-28364)Miss Islington (bot)2021-09-151-2/+4
* bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28368)Miss Islington (bot)2021-09-151-5/+25
* bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28366)Miss Islington (bot)2021-09-151-3/+11
* bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28334)Miss Islington (bot)2021-09-151-1/+3
* bpo-45020: Don't test IDLE with frozen module. (GH-28344)Miss Islington (bot)2021-09-151-2/+2
* bpo-45196: prevent unittest crash on address sanitizer builds (GH-28331)Miss Islington (bot)2021-09-142-3/+20
* bpo-45156: Fixes inifite loop on unittest.mock.seal() (GH-28300)Miss Islington (bot)2021-09-142-6/+68
* bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH...Miss Islington (bot)2021-09-132-8/+17
* bpo-45182: Fix incorrect use of requires_zlib in test_bdist_rpm (GH-28305)Miss Islington (bot)2021-09-131-2/+2
* IDLE: adjust Python version in doc url for 3.10+ (GH-28228) (GH-28282)Miss Islington (bot)2021-09-101-5/+7
* [3.9] bpo-45097: Fix deprecation warnings in test_asyncio (GH-28236)Serhiy Storchaka2021-09-081-4/+6
* [3.9] bpo-45121: Fix RecursionError when calling Protocol.__init__ from a sub...Ken Jin2021-09-082-0/+16
* bpo-45118: Fix regrtest second summary for re-run tests (GH-28183) (GH-28215)Miss Islington (bot)2021-09-071-4/+7
* [3.8] Update idlelib/help.html to include idle.rst spelling fix (GH-28191) (G...Miss Islington (bot)2021-09-071-13/+7
* bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)Miss Islington (bot)2021-09-051-0/+138
* [3.9] bpo-45042: Now test classes decorated with `requires_hashdigest` are no...Serhiy Storchaka2021-09-053-6/+21
* bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)Miss Islington (bot)2021-09-041-2/+8
* [3.9] bpo-45097: Remove incorrect deprecation warnings in asyncio. (GH-28153)Serhiy Storchaka2021-09-0410-181/+232
* [3.9] bpo-45083: Include the exception class qualname when formatting an exce...Miss Islington (bot)2021-09-032-0/+27