summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.9.8v3.9.8Łukasz Langa2021-11-051-18/+19
* bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) ...Miss Islington (bot)2021-11-051-1/+4
* bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-294...Miss Islington (bot)2021-11-051-46/+20
* [3.9] bpo-30570: Fix segfault on buildbots caused by stack overflow from recu...Łukasz Langa2021-11-042-12/+18
* bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048) (GH-29178)Miss Islington (bot)2021-11-041-0/+30
* [3.9] bpo-45678: Fix `singledispatchmethod` `classmethod`/`staticmethod` bug ...Alex Waygood2021-11-042-2/+148
* [3.9] bpo-45578: add tests for `dis.distb` (GH-29332) (#29386)Łukasz Langa2021-11-031-0/+41
* [3.9] bpo-45679: Fix caching of multi-value typing.Literal (GH-29334) (GH-29342)Serhiy Storchaka2021-11-032-6/+7
* bpo-45406: make inspect.getmodule() return None when getabsfile() raises File...Miss Islington (bot)2021-11-022-1/+10
* [3.9] bpo-45628: Check all parts of the suffix for an extension match. (GH-29...Miss Islington (bot)2021-10-291-2/+7
* [3.9] [3.10] bpo-45502: Fix test_shelve (GH-29003) (GH-29305) (GH-29306)Serhiy Storchaka2021-10-291-72/+55
* bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167) (GH-29295)Miss Islington (bot)2021-10-281-44/+53
* bpo-45624: make test_graphlib not depend on the iteration order of sets (GH-2...Miss Islington (bot)2021-10-281-4/+13
* bpo-45612: Add sqlite3 module docstring (GH-29224) (GH-29289)Miss Islington (bot)2021-10-281-0/+34
* [3.9] bpo-39679: Fix `singledispatchmethod` `classmethod`/`staticmethod` bug ...Alex Waygood2021-10-282-0/+48
* bpo-44904: Fix classmethod property bug in doctest module (GH-28838)Miss Islington (bot)2021-10-282-4/+17
* bpo-45438: format of inspect.Signature with generic builtins (GH-29212)Miss Islington (bot)2021-10-272-0/+13
* bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127)Miss Islington (bot)2021-10-221-0/+24
* bpo-45160: Ttk optionmenu only set variable once (GH-28291) (GH-29132)Miss Islington (bot)2021-10-212-1/+17
* bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ...Miss Islington (bot)2021-10-202-0/+23
* bpo-45229: Make doctest tests discoverable (GH-28986) (GH-29096)Miss Islington (bot)2021-10-202-23/+18
* [3.9] bpo-45494: Fix parser crash when reporting errors involving invalid con...Łukasz Langa2021-10-201-0/+4
* Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)Miss Islington (bot)2021-10-202-2/+2
* bpo-45436: Fix tkinter tests with Tcl/Tk 8.6.11+ (GH-29077) (GH-29081)Miss Islington (bot)2021-10-202-5/+11
* [3.9] bpo-45500: Rewrite test_dbm (GH-29002) (GH-29074)Łukasz Langa2021-10-201-64/+50
* bpo-45229: Make test_http_cookiejar discoverable (GH-29004)Miss Islington (bot)2021-10-171-10/+1
* bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka2021-10-142-5/+39
* [3.9] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-esca...Serhiy Storchaka2021-10-142-5/+48
* [3.9] bpo-24444: fix an error in argparse help when help for an option is bla...Miss Islington (bot)2021-10-132-5/+44
* bpo-45386: Handle strftime's ValueError graciously in xmlrpc.client (GH-28765...Miss Islington (bot)2021-10-131-2/+8
* [3.9] bpo-45229: Make tkinter tests discoverable (GH-28637) (GH-28929)Łukasz Langa2021-10-1316-598/+496
* bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452) (...Miss Islington (bot)2021-10-132-0/+3
* bpo-45401: Fix a resource warning in test_logging (GH-28864) (GH-28873)Miss Islington (bot)2021-10-121-0/+1
* bpo-45401: Change shouldRollover() methods to only rollover regular f… (GH-...Miss Islington (bot)2021-10-112-4/+25
* bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)Miss Islington (bot)2021-10-091-1/+30
* bpo-45337: Use the realpath of the new executable when creating a venv on Win...Miss Islington (bot)2021-10-072-9/+25
* [3.9] Fix typos in the Lib directory (GH-28775) (GH-28803)Christian Clauss2021-10-0753-67/+67
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) (GH-28...Miss Islington (bot)2021-10-061-1/+7
* [3.9] bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28...Łukasz Langa2021-10-054-6/+2
* [3.9] bpo-44050: Extension modules can share state when they don't support su...Łukasz Langa2021-10-051-0/+31
* bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712)Miss Islington (bot)2021-10-051-4/+7
* bpo-45371: Fix distutils' rpath support for clang (GH-28732)Miss Islington (bot)2021-10-051-1/+2
* [3.9] bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089) (GH-...John Belmonte2021-10-053-4/+73
* [3.9] Remove trailing spaces (GH-28710)Serhiy Storchaka2021-10-031-2/+2
* [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