summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-41043: Escape literal part of the path for glob(). (GH-20994). (GH-...Serhiy Storchaka2020-07-0212-13/+13
* bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...Miss Islington (bot)2020-07-021-47/+1
* bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface (GH-21...Miss Islington (bot)2020-06-291-0/+12
* [3.9] bpo-41084: Fix test_fstring failure when using the old parser (GH-21212)Lysandros Nikolaou2020-06-291-4/+8
* bpo-41048: mimetypes should read the rule file using UTF-8, not the locale en...Miss Islington (bot)2020-06-291-0/+12
* bpo-41138: Fix trace CLI for non-UTF-8 files. (GH-21177)Miss Islington (bot)2020-06-281-13/+21
* [3.9] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-281-0/+21
* [3.9] bpo-40769: Allow extra surrounding parentheses for invalid annotated as...Pablo Galindo2020-06-271-0/+13
* bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...Miss Islington (bot)2020-06-271-3/+7
* [3.9] bpo-41069: Make TESTFN and the CWD for tests containing non-ascii chara...Serhiy Storchaka2020-06-2521-58/+88
* bpo-41112: Fix test_peg_generator on non-UTF-8 locales. (GH-21138)Miss Islington (bot)2020-06-251-2/+2
* bpo-41113: Fix test_warnings on non-Western locales. (GH-21143)Miss Islington (bot)2020-06-251-3/+3
* [3.9] bpo-41009: fix requires_OS_version() class decorator (GH-20942) (GH-20947)Christian Heimes2020-06-251-19/+19
* bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)Miss Islington (bot)2020-06-251-1/+1
* bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126)Miss Islington (bot)2020-06-251-2/+12
* bpo-41094: Additional fix for PYTHONSTARTUP. (GH-21119)Miss Islington (bot)2020-06-241-2/+2
* bpo-41094: Fix decoding errors with audit when open files. (GH-21095)Miss Islington (bot)2020-06-241-2/+2
* bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040)Miss Islington (bot)2020-06-221-0/+5
* bpo-26407: Do not mask errors in csv. (GH-20536)Miss Islington (bot)2020-06-221-1/+19
* bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...Miss Islington (bot)2020-06-222-0/+14
* bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010)Miss Islington (bot)2020-06-211-13/+39
* [3.9] bpo-41052: Opt out serialization/deserialization for _random.Random (GH...Dong-hee Na2020-06-211-0/+10
* [3.9] bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the gramma...Lysandros Nikolaou2020-06-211-0/+8
* bpo-41044: Generate valid PEG python parsers for opt+seq rules (GH-20995)Miss Islington (bot)2020-06-201-0/+8
* bpo-41040: Fix test_modulefinder. (GH-20991)Miss Islington (bot)2020-06-191-1/+2
* bpo-38377: Fix skip_if_broken_multiprocessing_synchronize() on macOS (GH-20984)Miss Islington (bot)2020-06-191-8/+9
* [3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) ...Lysandros Nikolaou2020-06-192-2/+57
* bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944...Victor Stinner2020-06-187-12/+37
* [3.9] bpo-40637: Do not emit warnings for disabled builtin hashes (GH… (GH-...stratakis2020-06-171-1/+1
* bpo-41003: Fix test_copyreg when numpy is installed (GH-20935) (GH-20945)Victor Stinner2020-06-172-5/+20
* bpo-40958: Avoid buffer overflow in the parser when indexing the current line...Miss Islington (bot)2020-06-161-3/+3
* bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20...Miss Islington (bot)2020-06-161-0/+4
* bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491)Miss Islington (bot)2020-06-151-1/+1
* bpo-40448: ensurepip: Do not use cache (GH-19812)Miss Islington (bot)2020-06-151-8/+8
* bpo-34226: fix cgi.parse_multipart without content_length (GH-8530)Miss Islington (bot)2020-06-151-0/+14
* bpo-30064: Fix slow asyncio sock test (GH-20868)Miss Islington (bot)2020-06-141-14/+20
* bpo-40855: Fix ignored mu and xbar parameters (GH-20835) (#GH-20862)Miss Islington (bot)2020-06-131-0/+12
* bpo-40834: Fix truncate when sending str object with channel (GH-20555)Miss Islington (bot)2020-06-131-0/+3
* bpo-40964: disable remote IMAP tests (GH-20836)Christian Heimes2020-06-121-0/+3
* [3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814)Pablo Galindo2020-06-111-1/+5
* bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) (GH-20813)Victor Stinner2020-06-111-0/+1
* bpo-34401: Fix test_gdb for HP GDB version string (GH-20804)Miss Islington (bot)2020-06-111-1/+2
* bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)Miss Islington (bot)2020-06-112-0/+21
* bpo-40927: Fix test_binhex when run twice (GH-20764) (GH-20789)Victor Stinner2020-06-101-1/+1
* bpo-40826: Fix test_repl.test_close_stdin() on Windows (GH-20779) (GH-20785)Victor Stinner2020-06-104-46/+42
* bpo-36543: Revert "bpo-36543: Remove the xml.etree.cElementTree module." (GH-...Miss Islington (bot)2020-06-101-0/+15
* Raise specialised syntax error for invalid lambda parameters (GH-20776)Miss Islington (bot)2020-06-101-18/+12
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Victor Stinner2020-06-081-7/+15
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723)Victor Stinner2020-06-081-3/+31
* [3.9] Remove PEG-specific syntax error check in the old parser (GH-20717)Pablo Galindo2020-06-081-4/+0