summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* [3.10] gh-100871: Improve `copy` module tests (GH-100872) (#100975)Nikita Sobolev2023-01-122-2/+44
* [3.10] GH-100892: Fix race in clearing `threading.local` (GH-100922). (#100938)Kumar Aditya2023-01-111-0/+13
* [3.10] gh-90104: avoid RecursionError on recursive dataclass field repr (gh-1...Carl Meyer2023-01-061-0/+18
* GH-86508: skip binding to local addresses of different family in `asyncio.ope...Miss Islington (bot)2023-01-041-0/+41
* [3.10] gh-95882: Add tests for traceback from contextlib context managers (GH...Irit Katriel2023-01-032-0/+108
* [3.10] gh-99535: Add test for inheritance of annotations and update documenta...Jelle Zijlstra2022-12-271-0/+22
* [3.10] gh-100474: Fix handling of dirs named index.html in http.server (GH-10...Miss Islington (bot)2022-12-241-0/+3
* gh-94808: improve test coverage of number formatting (GH-99472)Miss Islington (bot)2022-12-241-5/+39
* bpo-40447: accept all path-like objects in compileall.compile_file (GH-19883)Miss Islington (bot)2022-12-231-0/+28
* gh-100129: Add tests for pickling all builtin types and functions (GH-100142)Miss Islington (bot)2022-12-211-0/+29
* gh-100374: Fixed a bug in socket.getfqdn() (gh-100375)Miss Islington (bot)2022-12-211-0/+4
* [3.10] gh-99240: Reset pointer to NULL when the pointed memory is freed in ar...colorfulappl2022-12-211-0/+4
* [3.10] gh-85267: Improvements to inspect.signature __text_signature__ handlin...Shantanu2022-12-211-1/+20
* [3.10] gh-99240: Fix double-free bug in Argument Clinic str_converter generat...colorfulappl2022-12-202-22/+27
* [3.10] gh-96002: Add functional test for Argument Clinic (GH-96178) (#100232)colorfulappl2022-12-171-1/+393
* bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error ...Miss Islington (bot)2022-12-091-1/+17
* gh-98778: Update HTTPError to initialize properly even if fp is None (gh-99966)Miss Islington (bot)2022-12-081-0/+4
* gh-83035: handle decorator with nested parens in inspect.getsource (GH-99654)Miss Islington (bot)2022-12-072-0/+20
* [3.10] gh-100050: Fix an assertion error when raising unclosed parenthesis er...Pablo Galindo Salgado2022-12-071-0/+16
* [3.10] gh-93453: Only emit deprecation warning in asyncio.get_event_loop when...Łukasz Langa2022-12-067-117/+68
* gh-100001: Also escape \s in http.server log messages. (GH-100038)Miss Islington (bot)2022-12-051-0/+2
* gh-100001: Omit control characters in http.server stderr logs. (GH-100002)Miss Islington (bot)2022-12-051-1/+20
* [3.10] gh-60203: Revert changes in cycle.__setstate__ (GH-99982) (#100017)Łukasz Langa2022-12-051-0/+32
* gh-99892: test_unicodedata: skip test on download failure (GH-100011)Miss Islington (bot)2022-12-051-3/+4
* [3.10] gh-60203: Always pass True/False as boolean arguments in tests (GH-999...Serhiy Storchaka2022-12-042-2/+2
* [3.10] bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and s… (#99...Kumar Aditya2022-11-281-1/+9
* gh-51524: Fix bug when calling trace.CoverageResults with valid infile (GH-99...Miss Islington (bot)2022-11-281-0/+10
* gh-97966: Restore prior expectation that uname_result._fields and ._asdict wo...Miss Islington (bot)2022-11-261-0/+8
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (GH-GH-5688)Miss Islington (bot)2022-11-251-0/+8
* gh-99341: Cover type ignore nodes when incrementing line numbers (GH-99422)Miss Islington (bot)2022-11-221-0/+12
* gh-99578: Fix refleak in _imp.create_builtin() (GH-99642)Miss Islington (bot)2022-11-211-0/+30
* [3.10] gh-99581: Fix a buffer overflow in the tokenizer when copying lines th...Pablo Galindo Salgado2022-11-201-0/+16
* [3.10] gh-78453: Move Unicode C API tests from test_unicode to test_capi.test...Serhiy Storchaka2022-11-202-487/+502
* gh-87604: Avoid publishing list of active per-interpreter audit hooks via the...Miss Islington (bot)2022-11-152-0/+16
* bpo-34272: Reorganize C API tests. (GH-8551)Miss Islington (bot)2022-11-125-0/+8
* gh-80448: argparse: Fix IndexError on store_true action (GH-15656)Miss Islington (bot)2022-11-121-1/+1
* [3.10] gh-99130: Apply bugfixes from importlib_metadata 4.11.4. (#99132)Jason R. Coombs2022-11-101-4/+6
* gh-74044: inspect.signature for wrappers around decorated bound methods (GH-736)Miss Islington (bot)2022-11-101-2/+7
* gh-99320: remove tests for old-style class from `test_complex` (GH-99321)Miss Islington (bot)2022-11-101-6/+1
* [3.11] gh-98433: Fix quadratic time idna decoding. (GH-99092) (GH-99222)Miss Islington (bot)2022-11-081-0/+6
* gh-99124: use concrete exception types in `test_builtin` (GH-99125)Miss Islington (bot)2022-11-081-3/+3
* gh-98513: Test abstract methods of some `collections` types (GH-98516)Miss Islington (bot)2022-11-081-0/+5
* bpo-38523: ignore_dangling_symlinks does not apply recursively (GH-22937)Miss Islington (bot)2022-11-071-6/+13
* [3.10] [ GH-99155: Fix `NormalDist` pickle with `0` and `1` protocols (GH-991...Miss Islington (bot)2022-11-071-3/+8
* gh-99051: remove duplicated test from `test_weakref` (GH-99052)Miss Islington (bot)2022-11-061-35/+6
* `test_typing`: use all pickle protocols (GH-99154)Miss Islington (bot)2022-11-061-1/+1
* [3.11] gh-90867: test.support.wait_process() uses LONG_TIMEOUT (GH-99071) (GH...Miss Islington (bot)2022-11-041-3/+3
* [3.10] gh-98740: Fix validation of conditional expressions in RE (GH-98764) (...Serhiy Storchaka2022-11-031-0/+5
* gh-98512: Add more tests for `ValuesView` (GH-98515)Miss Islington (bot)2022-11-032-0/+6
* [3.10] gh-98852: Fix subscription of types.GenericAlias instances (GH-98920) ...Serhiy Storchaka2022-11-011-0/+55