summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...Miss Islington (bot)2020-12-051-0/+5
* [3.9] bpo-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed...Miss Islington (bot)2020-12-051-2/+35
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Miss Islington (bot)2020-12-041-0/+11
* [3.9] bpo-42482: remove reference to exc_traceback from TracebackException (G...Miss Islington (bot)2020-12-041-0/+22
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Miss Islington (bot)2020-12-042-4/+41
* bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)Miss Islington (bot)2020-12-041-5/+0
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Miss Islington (bot)2020-12-031-3/+0
* bpo-42504: fix for MACOSX_DEPLOYMENT_TARGET=11 (GH-23556)Miss Islington (bot)2020-12-031-1/+1
* bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH...Miss Islington (bot)2020-11-301-0/+16
* [3.9] bpo-42474: test TracebackException comparison to non-equal instances (G...Irit Katriel2020-11-301-2/+39
* bpo-42450: Minor updates to the itertools recipes (GH-23555) (GH-23562)Miss Islington (bot)2020-11-291-2/+2
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Miss Islington (bot)2020-11-281-3/+5
* bpo-12800: tarfile: Restore fix from 011525ee9 (GH-21409)Miss Islington (bot)2020-11-251-3/+3
* bpo-41100: in test_platform, ignore 10.16 (GH-23485) (GH-23486)Miss Islington (bot)2020-11-241-1/+4
* [3.9] bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) (GH-23295)Ronald Oussoren2020-11-225-1/+262
* Clarify that Set._from_iterable is not required to be a classmethod. (GH-2327...Miss Islington (bot)2020-11-211-0/+56
* bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...Miss Islington (bot)2020-11-211-0/+13
* bpo-28002: Roundtrip f-strings with ast.unparse better (GH-19612) (GH-23430)Miss Islington (bot)2020-11-201-13/+29
* bpo-42345: Fix hash implementation of typing.Literal (GH-23383)Miss Islington (bot)2020-11-191-0/+5
* [3.9] bpo-42381: Allow walrus in set literals and set comprehensions (GH-2333...Pablo Galindo2020-11-181-3/+57
* bpo-42398: Fix "make regen-all" race condition (GH-23362) (GH-23367)Victor Stinner2020-11-181-7/+19
* [3.9] bpo-41561: skip test_min_max_version_mismatch (GH-22308) (GH-23363)Miss Islington (bot)2020-11-181-0/+1
* [3.9] bpo-42332: Add weakref slot to types.GenericAlias (GH-23250) (GH-23309)kj2020-11-171-38/+52
* [3.9] bpo-39934: Account for control blocks in 'except' in compiler. (GH-2239...Irit Katriel2020-11-171-0/+9
* [3.9] bpo-42345: Fix three issues with typing.Literal parameters (GH-23294) (...Yurii Karabas2020-11-171-0/+25
* bpo-40637: Don't test builtin PBKDF2 without builtin hashes (GH-20980)Miss Islington (bot)2020-11-171-9/+18
* bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) (GH-23329)Lysandros Nikolaou2020-11-161-0/+9
* bpo-42350: Fix Thread._reset_internal_locks() (GH-23268)Miss Islington (bot)2020-11-161-0/+29
* bpo-42140: Improve asyncio.wait function (GH-22938)Miss Islington (bot)2020-11-101-0/+24
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Miss Islington (bot)2020-11-101-0/+18
* bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)Miss Islington (bot)2020-11-071-0/+7
* Disable peg generator tests when building with PGO (GH-23141)Miss Islington (bot)2020-11-041-0/+6
* bpo-42103: Improve validation of Plist files. (GH-22882)Miss Skeleton (bot)2020-11-021-49/+340
* bpo-42224: Fix test_format when locale does not expect number grouping (GH-23...Lysandros Nikolaou2020-11-021-2/+5
* [3.9] bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (...Miss Skeleton (bot)2020-11-011-0/+12
* [3.9] bpo-42218: Correctly handle errors in left-recursive rules (GH-23065) (...Lysandros Nikolaou2020-10-311-0/+8
* [3.9] bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry...Pablo Galindo2020-10-311-0/+17
* [3.9] bpo-41659: Disallow curly brace directly after primary (GH-22996) (#23006)Lysandros Nikolaou2020-10-272-0/+4
* [3.9] bpo-42146: Fix memory leak in subprocess.Popen() in case of uid/gid ove...Miss Skeleton (bot)2020-10-261-0/+13
* [3.9] bpo-41052: Fix pickling heap types implemented in C with protocols 0 an...Serhiy Storchaka2020-10-251-0/+18
* [3.9] bpo-40592: shutil.which will not return None anymore if ; is the last c...Miss Skeleton (bot)2020-10-231-0/+17
* bpo-42057: Add a test case (GH-22878)Inada Naoki2020-10-221-0/+7
* bpo-41316: Make tarfile follow specs for FNAME (GH-21511)Miss Skeleton (bot)2020-10-211-1/+13
* bpo-38324: Fix test__locale.py Windows failures (GH-20529)Miss Skeleton (bot)2020-10-201-0/+4
* bpo-41491: plistlib: accept hexadecimal integer values in xml plist files (GH...Miss Skeleton (bot)2020-10-201-0/+13
* bpo-41471: Ignore invalid prefix lengths in system proxy settings on macOS (G...Miss Skeleton (bot)2020-10-201-0/+12
* bpo-42051: Reject XML entity declarations in plist files (GH-22760)Miss Skeleton (bot)2020-10-201-0/+18
* bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22...Miss Skeleton (bot)2020-10-201-0/+2
* bpo-27321 Fix email.generator.py to not replace a non-existent header. (GH-18...Miss Skeleton (bot)2020-10-191-0/+35
* bpo-40492: Fix --outfile with relative path when the program changes it worki...Anthony Sottile2020-10-181-1/+15