summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581)Stefan Krah2020-02-211-0/+35
* bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)ananthan-1232020-02-191-0/+35
* bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-...Kyle Meyer2020-02-181-0/+37
* bpo-39104: Fix hanging ProcessPoolExecutor on shutdown nowait with pickling f...Thomas Moreau2020-02-161-2/+72
* bpo-12915: Add pkgutil.resolve_name (GH-18310)Vinay Sajip2020-02-141-0/+55
* bpo-39627: Fix TypedDict totality check for inherited keys (#18503)Vlad Emelianov2020-02-131-0/+32
* bpo-39606: allow closing async generators that are already closed (GH-18475)Nathaniel J. Smith2020-02-131-2/+28
* bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Serhiy Storchaka2020-02-121-0/+27
* bpo-18819: tarfile: only set device fields for device files (GH-18080)William Chargin2020-02-121-0/+46
* bpo-32856: Optimize the assignment idiom in comprehensions. (GH-16814)Serhiy Storchaka2020-02-125-0/+79
* bpo-39219: Fix SyntaxError attributes in the tokenizer. (GH-17828)Serhiy Storchaka2020-02-121-1/+13
* bpo-39595: Improve zipfile.Path performance (#18406)Jason R. Coombs2020-02-124-41/+166
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-111-3/+3
* bpo-38325: Skip non-BMP tests of test_winconsoleio (GH-18448)Victor Stinner2020-02-101-0/+6
* bpo-39590: make deque.__contains__ and deque.count hold strong references (GH...sweeneyde2020-02-091-0/+12
* bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)Lysandros Nikolaou2020-02-071-0/+8
* bpo-39350: Fix fractions for int subclasses (GH-18375)Victor Stinner2020-02-071-0/+22
* bpo-39274: Ensure Fraction.__bool__() returns a bool (GH-18017)Sebastian Berg2020-02-061-0/+37
* bpo-39488: Skip test_largefile tests if not enough disk space (GH-18261)Giampaolo Rodola2020-02-051-0/+18
* bpo-39491: Merge PEP 593 (typing.Annotated) support (#18260)Jakub Stasiak2020-02-051-0/+234
* closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)Philipp Gesang2020-02-041-0/+5
* bpo-38076 Clear the interpreter state only after clearing module globals (GH-...Eddie Elizondo2020-02-043-1/+36
* Fixes in sorting descriptions (GH-18317)Stefan Pochmann2020-02-031-1/+1
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-0312-28/+3
* bpo-39492: Fix a reference cycle between reducer_override and a Pickler insta...Pierre Glaser2020-02-021-0/+24
* bpo-39349: Add *cancel_futures* to Executor.shutdown() (GH-18057)Kyle Stanley2020-02-021-0/+39
* bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)Andrew Svetlov2020-02-012-138/+40
* bpo-37224: Improve test__xxsubinterpreters.DestroyTests (GH-18058)Kyle Stanley2020-01-311-1/+5
* bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282)Victor Stinner2020-01-301-1/+6
* bpo-39424: Use assertRaisesRegex instead of assertRaisesRegexp. (GH-18277)damani422020-01-301-1/+1
* bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)Victor Stinner2020-01-301-3/+0
* bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247)Victor Stinner2020-01-291-0/+12
* bpo-36051: Drop GIL during large bytes.join() (GH-17757)Bruce Merry2020-01-291-2/+6
* bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)RĂ©mi Lapeyre2020-01-281-0/+5
* bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windo...Christoph Reiter2020-01-281-8/+14
* bpo-39205: Tests that highlight a hang on ProcessPoolExecutor shutdown (#18221)Brian Quinlan2020-01-281-0/+20
* bpo-39459: test.pythoninfo logs effective uid/gid (GH-18203)Victor Stinner2020-01-271-9/+14
* bpo-39453: Add testcase for bpo-39453 (GH-18202)Dong-hee Na2020-01-271-0/+2
* bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH...Dong-hee Na2020-01-271-0/+5
* Fix so that test.test_distutils can be executed by unittest and not just regr...Toshio Kuratomi2020-01-271-0/+6
* bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-241-0/+42
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-242-5/+0
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-241-8/+35
* bpo-17005: Add a class to perform topological sorting to the standard library...Pablo Galindo2020-01-231-1/+273
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Pablo Galindo2020-01-231-0/+31
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-231-2/+2
* bpo-29435: Allow is_tarfile to take a filelike obj (GH-18090)William Woodruff2020-01-231-0/+32
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-233-0/+26
* bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...Alex Rebert2020-01-221-0/+11
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-221-3/+8