summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-38698: Prevent UnboundLocalError to pop up in parse_message_id (GH-17277)Miss Islington (bot)2019-12-052-1/+8
* [3.8] bpo-38270: Fix indentation of test_hmac assertions (GH-17446) (GH-17450)Miss Islington (bot)2019-12-051-2/+2
* bpo-33684: json.tool: Use utf-8 for infile and outfile. (GH-17460)Miss Islington (bot)2019-12-042-5/+22
* bpo-38945: UU Encoding: Don't let newline in filename corrupt the output form...Miss Islington (bot)2019-12-023-0/+20
* bpo-38815: Accept TLSv3 default in min max test (GH-NNNN) (GH-17437)Miss Islington (bot)2019-12-021-2/+8
* bpo-38449: Add URL delimiters test cases (GH-16729)Miss Islington (bot)2019-12-011-0/+15
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisablehook are...Steve Dower2019-11-282-14/+79
* bpo-26730: Fix SpooledTemporaryFile data corruption (GH-17400)Miss Islington (bot)2019-11-282-17/+23
* [3.8] bpo-38688, shutil.copytree: consume iterator and create list of entries...Bruno P. Kinoshita2019-11-272-6/+19
* [3.8] bpo-38862: IDLE Strip Trailing Whitespace fixes end newlines (GH-17366)Terry Jan Reedy2019-11-275-40/+65
* bpo-38686: fix HTTP Digest handling in request.py (GH-17045)Miss Islington (bot)2019-11-221-2/+4
* bpo-38804: Fix REDoS in http.cookiejar (GH-17157)Miss Islington (bot)2019-11-222-6/+25
* bpo-22367: Update test_fcntl.py for spawn process mode (GH-17154) (GH-17252)Miss Islington (bot)2019-11-221-9/+19
* [3.8] bpo-38857: AsyncMock fix for awaitable values and StopIteration fix [3....Lisa Roach2019-11-212-41/+95
* bpo-37838: get_type_hints for wrapped functions with forward reference (GH-17...Miss Islington (bot)2019-11-213-1/+27
* bpo-38875: test_capi: trashcan tests require cpu resource (GH-17314)Miss Islington (bot)2019-11-211-0/+2
* bpo-38841: Skip asyncio test_create_datagram_endpoint_existing_sock_unix (GH-...Miss Islington (bot)2019-11-201-1/+1
* bpo-38821: Fix crash in argparse when using gettext (GH-17192)Miss Islington (bot)2019-11-201-2/+3
* bpo-38636: Fix IDLE tab toggle and file indent width (GH-17008)Miss Islington (bot)2019-11-204-6/+45
* bpo-38707: Fix for multiprocessing.Process MainThread.native_id (GH-17088)Miss Islington (bot)2019-11-192-0/+24
* bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Miss Islington (bot)2019-11-191-0/+27
* bpo-38807: Add os.PathLike to exception message raised by _check_arg_types (G...Miss Islington (bot)2019-11-191-2/+2
* bpo-38722: Runpy use io.open_code() (GH-17234)Miss Islington (bot)2019-11-181-2/+3
* bpo-38622: Add missing audit events for ctypes module (GH-17158)Miss Islington (bot)2019-11-181-0/+4
* bpo-16576: Add checks for bitfields passed by value to functions. (GH-17097) ...Miss Islington (bot)2019-11-181-0/+81
* Fix typo in Lib/socketserver.py (GH-17024)Miss Islington (bot)2019-11-161-1/+1
* bpo-38453: Ensure correct short path is obtained for test (GH-17184)Miss Islington (bot)2019-11-161-3/+21
* bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967)Steve Dower2019-11-153-23/+90
* bpo-38785: Prevent asyncio from crashing (GH-17144)Miss Islington (bot)2019-11-132-1/+43
* bpo-4630: Add cursor no-blink option for IDLE (GH-16960)Miss Islington (bot)2019-11-136-1/+45
* [3.8] closes bpo-27805: Ignore ESPIPE in initializing seek of append-mode fil...Benjamin Peterson2019-11-122-1/+16
* bpo-38723: Pdb._runscript should use io.open_code() instead of open() (GH-17127)Miss Islington (bot)2019-11-121-1/+2
* [3.8] bpo-38738: Fix formatting of True and False. (GH-17083) (GH-17125)Serhiy Storchaka2019-11-122-4/+4
* bpo-26353: IDLE adds an unneeded newline when saving a shell window (GH-17103)Miss Islington (bot)2019-11-123-15/+31
* [3.8] bpo-37309: idlelib/NEWS.txt - add missing period. (#17115)Terry Jan Reedy2019-11-121-1/+1
* bpo-38385: Fix iterator/iterable terminology in statistics docs (GH-17111) (G...Miss Islington (bot)2019-11-121-1/+1
* bpo-22367: Add tests for fcntl.lockf(). (GH-17010)Miss Islington (bot)2019-11-091-1/+28
* Fix a typo in wave module docstring (GH-17009)Miss Islington (bot)2019-11-051-1/+1
* bpo-38422: Clarify docstrings of pathlib suffix(es) (GH-16679)Miss Skeleton (bot)2019-11-021-2/+10
* [3.8] Slightly improve plistlib test coverage. (GH-17025) (GH-17028)Jon Janzen2019-11-021-5/+21
* [3.8] bpo-16575: Add checks for unions passed by value to functions. (GH-1679...Vinay Sajip2019-10-311-0/+80
* Add docstring for shlex.split (GH-16740) (GH-17013)Miss Skeleton (bot)2019-10-311-0/+1
* bpo-38640: Allow break and continue in always false while loops (GH-16992)Miss Skeleton (bot)2019-10-301-0/+18
* bpo-36993: Improve error reporting for zipfiles with bad zip64 extra data. (G...Miss Skeleton (bot)2019-10-292-0/+234
* bpo-38334: Fix seeking backward on an encrypted zipfile.ZipExtFile. (GH-16937)Miss Skeleton (bot)2019-10-272-26/+69
* [3.8] bpo-37309: First idlelib/NEWS.txt for 3.8.1 (GH-16947)Terry Jan Reedy2019-10-271-1/+9
* bpo-34162: Last idlelib/NEWS.txt items for 3.8.0. (GH-16943)Miss Skeleton (bot)2019-10-271-0/+9
* bpo-38598: Do not try to compile IDLE shell or output windows (GH-16939)Miss Skeleton (bot)2019-10-271-0/+7
* bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...Miss Skeleton (bot)2019-10-261-6/+6
* bpo-33348: parse expressions after * and ** in lib2to3 (GH-6586)Miss Skeleton (bot)2019-10-245-11/+12