summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-24444: fix an error in argparse help when help for an option is blank (GH...andrei kulakov2021-10-131-0/+36
* bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452)Ben Hoyt2021-10-131-0/+1
* bpo-45229: Make tkinter tests discoverable (GH-28637)Serhiy Storchaka2021-10-133-32/+479
* bpo-45410: regrtest replaces print_warning.orig_stderr (GH-28926)Victor Stinner2021-10-133-3/+53
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-134-27/+27
* bpo-45410: regrtest -W leaves stdout/err FD unchanged (GH-28915)Victor Stinner2021-10-137-82/+19
* bpo-45453: Fix test_embed.StdPrinterTests (GH-28916)Victor Stinner2021-10-131-8/+4
* bpo-45410: Enhance libregrtest -W/--verbose3 option (GH-28908)Victor Stinner2021-10-123-15/+72
* bpo-45410: Add test.support.flush_std_streams() (GH-28885)Victor Stinner2021-10-112-9/+11
* bpo-20028: Empty escapechar/quotechar is not allowed for csv.Dialect (GH-28833)Dong-hee Na2021-10-111-1/+12
* bpo-45401: Fix a resource warning in test_logging (GH-28864)Serhiy Storchaka2021-10-111-0/+1
* bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)Joongi Kim2021-10-101-13/+57
* bpo-45401: Change shouldRollover() methods to only rollover regular f… (GH-...Vinay Sajip2021-10-101-0/+15
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-103-6/+21
* Fix EncodingWarning in test_tools. (GH-28846)Inada Naoki2021-10-106-23/+27
* Fix dataclassses spelling (GH-28837)Landon Yarrington2021-10-091-1/+1
* bpo-27580: Add support of null characters in the csv module. (GH-28808)Serhiy Storchaka2021-10-091-5/+39
* bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado2021-10-092-4/+24
* bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)Dong-hee Na2021-10-091-1/+30
* bpo-10716: Migrating pydoc to html5. (GH-28651)Julien Palard2021-10-092-167/+125
* bpo-45410: libregrtest -jN writes stderr into stdout (GH-28819)Victor Stinner2021-10-081-22/+18
* bpo-45408: Don't override previous tokenizer errors in the second parser pass...Pablo Galindo Salgado2021-10-072-1/+9
* bpo-45337: Use the realpath of the new executable when creating a venv on Win...Steve Dower2021-10-071-2/+8
* bpo-45403: Fix test_sys.test_stdlib_dir() (GH-28785)Victor Stinner2021-10-071-2/+2
* bpo-45400: Fix suggestion test of test_exceptions (GH-28783)Victor Stinner2021-10-071-1/+1
* bpo-35970: Add help flag to base64 module (GH-28774)Ammar Askar2021-10-071-0/+10
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-0634-44/+44
* bpo-40321: Add missing test, slightly expand documentation (GH-28760)Łukasz Langa2021-10-061-3/+3
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-36/+1
* Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)Mark Shannon2021-10-061-2/+2
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-052-18/+48
* Rearrage the finder tests. (gh-28740)Eric Snow2021-10-051-30/+56
* bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow2021-10-052-23/+60
* bpo-44050: Extension modules can share state when they don't support sub-inte...Hai Shi2021-10-051-0/+31
* bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712)Jeremy Kloth2021-10-051-4/+7
* bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089)John Belmonte2021-10-042-0/+69
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-032-3/+3
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697)Raymond Hettinger2021-10-021-1/+1
* bpo-45125: Improves pickling docs and tests for `shared_memory` (GH-28294)Nikita Sobolev2021-10-011-31/+104
* Revert "Revert "bpo-45229: Make datetime tests discoverable (GH-28615)" (GH-2...Serhiy Storchaka2021-10-011-47/+45
* bpo-45310: Fix parrallel shared memory tests (GH-28661)Serhiy Storchaka2021-10-011-16/+24
* bpo-45020: Add more test cases for frozen modules. (gh-28664)Eric Snow2021-10-012-13/+94
* bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654)Serhiy Storchaka2021-09-303-52/+30
* Revert "bpo-45229: Make datetime tests discoverable (GH-28615)" (GH-28650)Pablo Galindo Salgado2021-09-301-45/+47
* bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner2021-09-301-1/+48
* bpo-45229: Make datetime tests discoverable (GH-28615)Serhiy Storchaka2021-09-291-47/+45
* bpo-24391: Better reprs for threading objects. (GH-20534)Serhiy Storchaka2021-09-291-0/+36
* bpo-39039: tarfile raises descriptive exception from zlib.error (GH-27766)Jack DeVries2021-09-291-0/+14
* bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540)Nikita Sobolev2021-09-281-0/+9
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-282-0/+27