summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-99509: Add `__class_getitem__` to `multiprocessing.queues.Queue` (#99511)Nikita Sobolev2022-12-271-1/+6
* gh-99535: Add test for inheritance of annotations and update documentation (#...MonadChains2022-12-241-0/+22
* gh-100287: Fix unittest.mock.seal with AsyncMock (#100496)Shantanu2022-12-241-1/+13
* gh-100474: Fix handling of dirs named index.html in http.server (GH-100475)James Frost2022-12-241-0/+3
* Remove wrong comment about `repr` in `test_unicode` (#100495)Nikita Sobolev2022-12-241-1/+0
* GH-91166: Implement zero copy writes for `SelectorSocketTransport` in asyncio...Kumar Aditya2022-12-241-18/+99
* gh-100268: Add is_integer method to int (#100439)Shantanu2022-12-241-0/+5
* gh-94808: improve test coverage of number formatting (#99472)Nikita Sobolev2022-12-241-5/+39
* gh-99947: Ensure unreported errors are chained for SystemError during import ...Sebastian Berg2022-12-231-1/+6
* gh-68320, gh-88302 - Allow for private `pathlib.Path` subclassing (GH-31691)Barney Gale2022-12-231-30/+47
* GH-100425: Improve accuracy of builtin sum() for float inputs (GH-100426)Raymond Hettinger2022-12-231-0/+18
* bpo-40447: accept all path-like objects in compileall.compile_file (#19883)Filipe Laíns2022-12-231-0/+28
* gh-99482: remove `jython` compatibility parts from stdlib and tests (#99484)Nikita Sobolev2022-12-239-173/+120
* gh-83076: 3.8x speed improvement in (Async)Mock instantiation (#100252)Carl Meyer2022-12-231-0/+13
* gh-94155: Reduce hash collisions for code objects (#100183)Dennis Sweeney2022-12-231-0/+26
* gh-99110: Initialize `frame->previous` in init_frame to fix segmentation faul...Bill Fisher2022-12-231-0/+9
* gh-76963: PEP3118 itemsize of an empty ctypes array should not be 0 (GH-5576)Eric Wieser2022-12-231-0/+2
* gh-85432: Harmonise parameter names between C and pure-Python implementations...Alex Waygood2022-12-221-0/+9
* gh-100344: Add C implementation for `asyncio.current_task` (#100345)Itamar Ostricher2022-12-221-7/+14
* gh-78997: fix bad rebase of moved test file (#100424)Eli Schwartz2022-12-221-0/+6
* gh-78878: Fix crash when creating an instance of `_ctypes.CField` (#14837)Hai Shi2022-12-211-0/+6
* gh-100129: Add tests for pickling all builtin types and functions (GH-100142)Serhiy Storchaka2022-12-211-0/+29
* gh-100374: Fixed a bug in socket.getfqdn() (gh-100375)Dominic Socular2022-12-211-0/+4
* GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100...Kumar Aditya2022-12-211-0/+17
* gh-85267: Improvements to inspect.signature __text_signature__ handling (#98796)Shantanu2022-12-211-1/+20
* gh-99576: Fix cookiejar file that was not truncated for some classes (GH-99616)Nikita Sobolev2022-12-201-0/+26
* gh-99925: Fix inconsistency in `json.dumps()` error messages (GH-99926)František Nesveda2022-12-201-1/+2
* gh-89051: Add ssl.OP_LEGACY_SERVER_CONNECT (#93927)Thomas Grainger2022-12-201-0/+16
* gh-89727: Fix os.walk RecursionError on deep trees (#99803)Jon Burdo2022-12-192-6/+53
* gh-94912: Added marker for non-standard coroutine function detection (#99247)Carlton Gibson2022-12-181-0/+45
* gh-100272: Fix JSON serialization of OrderedDict (GH-100273)Serhiy Storchaka2022-12-171-0/+11
* gh-93649: Split tracemalloc tests from _testcapimodule.c (#99551)Erlend E. Aasland2022-12-172-154/+169
* gh-99240: Reset pointer to NULL when the pointed memory is freed in argument ...colorfulappl2022-12-171-0/+4
* gh-78707: deprecate passing >1 argument to `PurePath.[is_]relative_to()` (GH-...Barney Gale2022-12-171-3/+5
* gh-100039: enhance __signature__ to work with str and callables (GH-100168)Ethan Furman2022-12-162-2/+55
* GH-100234: Set a default value for random.expovariate() (GH-100235)Raymond Hettinger2022-12-151-0/+1
* gh-99688: Fix outdated tests in test_unary (#99712)Yesung(Isaac) Lee2022-12-111-6/+3
* gh-88500: Reduce memory use of `urllib.unquote` (#96763)Gregory P. Smith2022-12-111-0/+2
* gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes...DarioDaF2022-12-101-1/+4
* Fix potential flakiness in `test_run_until_complete_baseexception` (#100148)Fantix King2022-12-101-1/+1
* bpo-44512: Fix handling of extrasactions arg to csv.DictWriter with mixed or ...andrei kulakov2022-12-091-0/+8
* bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error ...Shreyan Avigyan2022-12-091-1/+17
* GH-100113: remove remaining `yield from` usage from `asyncio` tests (#100114)Kumar Aditya2022-12-091-2/+2
* gh-81057: Move OS-Related Globals to _PyRuntimeState (gh-100082)Eric Snow2022-12-081-6/+7
* GH-98363: Have batched() return tuples (GH-100118)Raymond Hettinger2022-12-081-8/+8
* test_ast uses infinite_recursion() to prevent crash (#100104)Victor Stinner2022-12-081-1/+2
* Fix `test_run_until_complete_baseexception` test to check for `KeyboardInterr...Fantix King2022-12-081-8/+3
* gh-100098: [Enum] insist on actual tuples, no subclasses, for auto (GH-100099)Ethan Furman2022-12-081-0/+13
* gh-98778: Update HTTPError to initialize properly even if fp is None (gh-99966)Dong-hee Na2022-12-081-0/+4
* gh-100086: Add build info to test.libregrtest (#100093)Victor Stinner2022-12-082-1/+88