summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-39453: Fix contains method of list to hold strong references (GH-18...Dong-hee Na2020-02-171-0/+7
* Revert "[3.8] bpo-27657: Fix urlparse() with numeric paths (GH-16839)" (GH-18...Senthil Kumaran2020-02-161-6/+4
* [3.8] bpo-39606: allow closing async generators that are already closed (GH-1...Miss Islington (bot)2020-02-131-2/+28
* bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Miss Islington (bot)2020-02-121-0/+27
* bpo-39219: Fix SyntaxError attributes in the tokenizer. (GH-17828)Miss Islington (bot)2020-02-121-1/+13
* bpo-39595: Improve zipfile.Path performance (GH-18406) (GH-18472)Miss Islington (bot)2020-02-124-41/+166
* bpo-39299: Add more tests for mimetypes and its cli. (GH-17949)Miss Islington (bot)2020-02-111-4/+80
* bpo-39590: make deque.__contains__ and deque.count hold strong references (GH...Miss Islington (bot)2020-02-091-0/+12
* [3.8] bpo-39579: Fix Attribute end_col_offset to point at the current node (G...Lysandros Nikolaou2020-02-081-0/+8
* bpo-39274: Ensure Fraction.__bool__() returns a bool (GH-18017)Miss Islington (bot)2020-02-061-0/+37
* closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)Miss Islington (bot)2020-02-041-0/+5
* bpo-37224: Improve test__xxsubinterpreters.DestroyTests (GH-18058)Miss Islington (bot)2020-02-041-1/+5
* Fixes in sorting descriptions (GH-18317)Miss Islington (bot)2020-02-041-1/+1
* [3.8] bpo-39492: Fix a reference cycle between reducer_override and a Pickler...Antoine Pitrou2020-02-021-0/+24
* bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282)Miss Islington (bot)2020-01-301-1/+6
* bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247)Miss Islington (bot)2020-01-291-0/+12
* bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windo...Miss Islington (bot)2020-01-281-8/+14
* [3.8] bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-271-0/+42
* [3.8] bpo-35182: fix communicate() crash after child closes its pipes (GH-181...Alex Rebert2020-01-231-0/+11
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Miss Islington (bot)2020-01-231-0/+31
* Move test_math tests (GH-18098) (GH-18102)Victor Stinner2020-01-211-129/+129
* bpo-39389: gzip: fix compression level metadata (GH-18077)Miss Islington (bot)2020-01-211-0/+20
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Miss Islington (bot)2020-01-201-0/+36
* [3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)...Karthikeyan Singaravelan2020-01-141-0/+16
* bpo-38293: Allow shallow and deep copying of property objects (GH-16438)Miss Islington (bot)2020-01-121-2/+2
* [3.8] Add test cases for dataclasses. (GH-17909) (GH-17919)Miss Islington (bot)2020-01-101-0/+19
* Fix typo in test's docstring (GH-17856) (GH-17923)Miss Islington (bot)2020-01-091-1/+1
* bpo-25172: Reduce scope of crypt import tests (GH-17881)Miss Islington (bot)2020-01-091-4/+5
* bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)Miss Islington (bot)2020-01-081-2/+2
* [3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894)Andrew Svetlov2020-01-071-2/+6
* bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)Miss Islington (bot)2020-01-061-0/+36
* Fix constant folding optimization for positional only arguments (GH-17837)Miss Islington (bot)2020-01-051-0/+12
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...Miss Islington (bot)2020-01-051-0/+1
* bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)Miss Islington (bot)2020-01-051-0/+23
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Miss Islington (bot)2020-01-051-0/+22
* Fix SystemError when nested function has annotation on positional-only argume...Miss Islington (bot)2020-01-051-0/+7
* bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-1777...Miss Islington (bot)2020-01-011-0/+31
* bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778)Miss Islington (bot)2020-01-012-3/+3
* [3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-...Dong-hee Na2019-12-312-1/+36
* bpo-38610: Fix possible crashes in several list methods (GH-17022)Miss Islington (bot)2019-12-301-0/+26
* [3.8] bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) (GH-17684)Bar Harel2019-12-231-0/+8
* bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (GH-17652...Victor Stinner2019-12-181-3/+11
* bpo-38546: multiprocessing tests stop the resource tracker (GH-17641) (GH-17647)Victor Stinner2019-12-182-21/+2
* [3.8] bpo-39080: Starred Expression's column offset fix when inside a CALL (G...Pablo Galindo2019-12-181-0/+9
* bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Cat...Ned Deily2019-12-171-1/+1
* Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17579)Miss Islington (bot)2019-12-171-3/+4
* bpo-38811: Check for presence of os.link method in pathlib (GH-17225)Miss Islington (bot)2019-12-161-0/+10
* Fix elif start column offset when there is an else following (GH-17596) (GH-1...Miss Islington (bot)2019-12-141-0/+9
* bpo-36406: Handle namespace packages in doctest (GH-12520) (GH-17591)Miss Islington (bot)2019-12-131-1/+5
* bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...Miss Islington (bot)2019-12-131-0/+9