summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)Victor Stinner2020-08-118-23/+23
* bpo-40275: Fix failed test cases by using test helpers (GH-21811)Hai Shi2020-08-104-9/+9
* bpo-16995: add support for base32 extended hex (base32hex) (GH-20441)Filipe Laíns2020-08-102-31/+125
* bpo-41324 Add a minimal decimal capsule API (#21519)Stefan Krah2020-08-101-0/+176
* bpo-41514: Fix buggy IDLE test (GH-21808)Terry Jan Reedy2020-08-101-5/+5
* bpo-41468: Improve and test IDLE run error exit (GH-21798)Terry Jan Reedy2020-08-093-10/+48
* Improve renamed test_run.RecursionLimitTest (GH-21794)Terry Jan Reedy2020-08-091-3/+5
* bpo-35018: Sax parser should provide user access to lexical handlers (GH-20958)Zackery Spytz2020-08-092-2/+200
* bpo-40275: Use new test.support helper submodules in tests (GH-21785)Hai Shi2020-08-084-16/+17
* bpo-40275: Remove test helpers aliases in test.support (GH-21771)Hai Shi2020-08-084-23/+10
* bpo-41497: Fix potential UnicodeDecodeError in dis CLI (GH-21757)Konge2020-08-081-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-078-18/+27
* bpo-41473: Skip test_gdb with gdb 9.2 to work around gdb bug (GH-21768)Victor Stinner2020-08-071-0/+5
* bpo-41477: Make ctypes optional in test_genericalias (GH-21766)Victor Stinner2020-08-071-38/+42
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-0715-84/+97
* bpo-41371: Handle lzma lib import error in test_zoneinfo.py (GH-21734)Nathan M2020-08-061-1/+2
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-0620-56/+73
* bpo-41482: Fix error in ipaddress.IPv4Network docstring (GH-21736)Eric L. Frederich2020-08-051-1/+1
* bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312)Batuhan Taskaya2020-08-052-3/+21
* bpo-40275: Use new test.support helper submodules in tests (GH-21727)Hai Shi2020-08-0419-46/+58
* bpo-40275: Use new test.support helper submodules in tests (GH-21452)Hai Shi2020-08-046-54/+62
* bpo-36982: Add support for extended color functions in ncurses 6.1 (GH-17536)Hans Petter Jansson2020-08-041-1/+15
* bpo-41431: Optimize dict_merge for copy (GH-21674)Inada Naoki2020-08-041-5/+6
* bpo-41467: Fix asyncio recv_into() on Windows (GH-21720)Victor Stinner2020-08-041-1/+1
* bpo-38912: regrtest logs unraisable exception into sys.__stderr__ (GH-21718)Victor Stinner2020-08-032-5/+15
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-0320-154/+185
* bpo-40275: Use new test.support helper submodules in tests (GH-21451)Hai Shi2020-08-0320-278/+324
* bpo-40275: Use new test.support helper submodules in tests (GH-21449)Hai Shi2020-08-0320-132/+154
* random module: Convert a "while 1" to "while True (GH-21700)Raymond Hettinger2020-08-021-1/+1
* bpo-41421: Algebraic simplification for random.paretovariate() (GH-21695)Raymond Hettinger2020-08-011-1/+1
* bpo-40360: Handle PendingDeprecationWarning in test_lib2to3. (GH-21694)Karthikeyan Singaravelan2020-07-311-1/+4
* bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517)Mark Shannon2020-07-303-9/+5
* bpo-35328: Set VIRTUAL_ENV_PROMPT at venv activation (GH-21587)Zackery Spytz2020-07-286-1/+15
* bpo-41401: Fix test_fspath_support in test_io. (GH-21640)Serhiy Storchaka2020-07-271-1/+1
* bpo-31904: Fix test_ftplib failures for VxWorks RTOS (GH-19447)pxinwr2020-07-271-0/+2
* bpo-41384: Raise TclError in tkinter.OptionMenu (GH-21601)Akuli2020-07-272-1/+5
* Delete remaining references to Grammar/Grammar from docs (#21624)Guido van Rossum2020-07-261-1/+1
* bpo-41385: Fix test_executable_without_cwd on Windows (GH-21608)Serhiy Storchaka2020-07-261-2/+4
* bpo-41314: fixed annotations __future__ version (GH-21616)YoSTEALTH2020-07-251-12/+13
* bpo-38731: Add --quiet option to py_compile CLI (GH-17134)Gregory Schevchenko2020-07-252-41/+104
* bpo-37309: NEWS for #41373 (GH-21612)Terry Jan Reedy2020-07-251-0/+4
* bpo-41373: IDLE: Fix saving files loaded with no newlines or mixed newlines (...Serhiy Storchaka2020-07-251-0/+11
* bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (#21595)Alex Grönholm2020-07-232-7/+25
* bpo-4630: Fix errors in Lib/idlelib/NEWS.txt (GH-21594)Zackery Spytz2020-07-231-2/+2
* bpo-41182 selector: use DefaultSelector based upon implementation (GH-21257)Abhijeet Kasurde2020-07-231-4/+28
* bpo-41341: Recursive evaluation of ForwardRef in get_type_hints (#21553)wyfo2020-07-222-6/+20
* bpo-41364: Reduce import overhead of uuid module (GH-21586)Steve Dower2020-07-211-7/+9
* bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clini...Serhiy Storchaka2020-07-201-6/+8
* bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15...Vinay Sharma2020-07-201-0/+7
* bpo-41338: Fix DeprecationWarning in tests (GH-21542)Inada Naoki2020-07-203-0/+11