summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-43795: Add a test for Stable ABI symbol availability using ctypes (GH-26354)Petr Viktorin2021-10-221-0/+843
* bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127)Gregory P. Smith2021-10-221-0/+24
* bpo-44019: Add test_all_exported_names for operator module (GH-29124)Dong-hee Na2021-10-211-0/+12
* bpo-44547: Make Fractions objects instances of typing.SupportsInt (GH-27851)Mark Dickinson2021-10-211-0/+42
* Move several typing tests to a proper class, refs GH-28563 (GH-29126)Nikita Sobolev2021-10-211-16/+16
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-1/+12
* bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...Petr Viktorin2021-10-211-1/+1
* bpo-35673: Add a public alias for namespace package __loader__ attribute (#29...Barry Warsaw2021-10-201-0/+7
* bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ...Kyungmin Lee2021-10-201-0/+19
* bpo-45320: Remove long-deprecated inspect methods (GH-28618)Hugo van Kemenade2021-10-201-94/+14
* Add a comment about how to fix bogus test_host_resolution_bad_address failure...Barry Warsaw2021-10-201-2/+4
* bpo-45229: Make doctest tests discoverable (GH-28986)Serhiy Storchaka2021-10-202-23/+18
* bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082)Zachary Ware2021-10-201-1/+0
* bpo-25625: add contextlib.chdir (GH-28271)Filipe Laíns2021-10-191-0/+43
* bpo-39679: Add tests for classmethod/staticmethod singledispatchmethods (GH-2...Alex Waygood2021-10-191-0/+42
* bpo-45506: Go back to not running most of test_embed in out-of-tree builds. (...Eric Snow2021-10-191-1/+1
* bpo-45494: Fix parser crash when reporting errors involving invalid continuat...Pablo Galindo Salgado2021-10-191-0/+4
* bpo-45500: Rewrite test_dbm (GH-29002)Serhiy Storchaka2021-10-191-69/+57
* bpo-42222: Improve tests for invalid argument types in randrange() (GH-29021)Serhiy Storchaka2021-10-191-20/+11
* bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)Mark Shannon2021-10-181-25/+27
* bpo-45229: Make test_http_cookiejar discoverable (GH-29004)Serhiy Storchaka2021-10-171-10/+1
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-161-3/+11
* bpo-45249: Fix caret location when end_offset is set to 0 (GH-28855)Pablo Galindo Salgado2021-10-161-0/+10
* bpo-42222: Remove deprecated support for non-integer values (GH-28983)Raymond Hettinger2021-10-161-36/+39
* bpo-45489: Update ForwardRef to support | operator. (GH-28991)Dong-hee Na2021-10-161-0/+6
* bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)Eric Snow2021-10-143-28/+36
* bpo-45471: Do not set PyConfig.stdlib_dir in Py_SetPythonHome(). (gh-28954)Eric Snow2021-10-141-1/+6
* bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka2021-10-141-1/+34
* bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...Serhiy Storchaka2021-10-141-4/+46
* bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28...Pablo Galindo Salgado2021-10-133-15/+25
* 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