summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-222-1/+25
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-211-8/+3
* Move test_math tests (GH-18098)Victor Stinner2020-01-211-148/+148
* bpo-39389: gzip: fix compression level metadata (GH-18077)William Chargin2020-01-211-0/+20
* bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)Victor Stinner2020-01-211-77/+77
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-201-0/+36
* bpo-39377: json: Remove the encoding option. (GH-18075)Inada Naoki2020-01-201-4/+0
* bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)Inada Naoki2020-01-201-2/+1
* bpo-39357: Remove buffering parameter of bz2.BZ2File (GH-18028)Victor Stinner2020-01-161-0/+3
* bpo-39350: Remove deprecated fractions.gcd() (GH-18021)Victor Stinner2020-01-161-25/+2
* bpo-39351: Remove base64.encodestring() (GH-18022)Victor Stinner2020-01-161-8/+0
* bpo-37958: Adding get_profile_dict to pstats (GH-15495)Daniel Olshansky2020-01-151-2/+22
* bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)Victor Stinner2020-01-151-0/+25
* bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998)Dong-hee Na2020-01-141-30/+45
* bpo-38901: Allow setting a venv's prompt to the basename of the current direc...Vinay Sajip2020-01-141-0/+9
* bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...Pablo Galindo2020-01-141-0/+18
* bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)Géry Ogam2020-01-141-9/+11
* bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)Mark Shannon2020-01-143-80/+79
* bpo-39259: smtp.SMTP/SMTP_SSL now reject timeout = 0 (GH-17958)Dong-hee Na2020-01-141-0/+5
* bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959)Dong-hee Na2020-01-131-0/+4
* bpo-39299: Add more tests for mimetypes and its cli. (GH-17949)Karthikeyan Singaravelan2020-01-131-4/+80
* Cleanup exit code for interpreter. (GH-17756)Mark Shannon2020-01-131-36/+0
* bpo-39310: Add math.ulp(x) (GH-17965)Victor Stinner2020-01-131-28/+27
* bpo-38293: Allow shallow and deep copying of property objects (GH-16438)Guðni Natan Gunnarsson2020-01-121-2/+2
* bpo-39288: Add math.nextafter(x, y) (GH-17937)Victor Stinner2020-01-121-0/+54
* bpo-39259: nntplib.NNTP/NNTP_SSL now reject timeout = 0 (GH-17936)Dong-hee Na2020-01-111-0/+4
* bpo-39200: Correct the error message for min/max builtin function (GH-17814)Dong-hee Na2020-01-101-2/+12
* bpo-39259: poplib now rejects timeout = 0 (GH-17912)Dong-hee Na2020-01-101-5/+7
* bpo-39166: Fix trace of last iteration of async for loops (#17800)Pablo Galindo2020-01-101-0/+76
* bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926)Serhiy Storchaka2020-01-101-102/+104
* Fix typo in test's docstring (GH-17856)Daniel Hahler2020-01-091-1/+1
* bpo-25172: Reduce scope of crypt import tests (GH-17881)Steve Dower2020-01-091-4/+5
* Add test cases for dataclasses. (#17909)Karthikeyan Singaravelan2020-01-091-0/+19
* bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)Dong-hee Na2020-01-081-2/+2
* bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203)Dong-hee Na2020-01-071-0/+23
* bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)Victor Stinner2020-01-071-1/+4
* bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)Andrew Svetlov2020-01-071-2/+6
* bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)Pablo Galindo2020-01-061-0/+36
* Organise and clean test_positional_only_arg and add more tests (GH-17842)Pablo Galindo2020-01-051-14/+23
* bpo-39200: Correct the error message for range() empty constructor (GH-17813)Pablo Galindo2020-01-051-0/+13
* Fix constant folding optimization for positional only arguments (GH-17837)Anthony Sottile2020-01-051-0/+12
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...Serhiy Storchaka2020-01-051-0/+1
* bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)Serhiy Storchaka2020-01-051-0/+23
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Serhiy Storchaka2020-01-051-0/+22
* Fix SystemError when nested function has annotation on positional-only argume...Anthony Sottile2020-01-051-0/+7
* bpo-39158: ast.literal_eval() doesn't support empty sets (GH-17742)Raymond Hettinger2020-01-031-0/+1
* bpo-38870: Throw ValueError on invalid yield from usage (GH-17798)Batuhan Taşkaya2020-01-021-0/+2