summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Minor formatting improvements and fixes to idle.rst (GH-17165)Miss Islington (bot)2020-01-061-7/+8
* bpo-39152: add missing ttk.Scale.configure return value (GH-17815)Miss Islington (bot)2020-01-052-11/+7
* bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)Miss Islington (bot)2020-01-052-17/+36
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...Miss Islington (bot)2020-01-052-1/+2
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Miss Islington (bot)2020-01-053-13/+37
* [3.7] bpo-39191: Don't spawn a task before failing (GH-17796) (#17821)Andrew Svetlov2020-01-041-3/+7
* bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-1777...Miss Islington (bot)2020-01-012-1/+32
* Fix idlelib README typo. (GH-17770)Miss Islington (bot)2019-12-311-1/+1
* [3.7] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-...Dong-hee Na2019-12-312-1/+36
* [3.7] bpo-38610: Fix possible crashes in several list methods (GH-17022) (GH-...Pablo Galindo2019-12-301-0/+26
* [3.7] bpo-39136: Fixed typos (GH-17720)Terry Jan Reedy2019-12-292-3/+3
* [3.7] bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) (GH-17685)Bar Harel2019-12-232-1/+13
* Merge tag 'v3.7.6' into 3.7Ned Deily2019-12-181-1/+1
|\
| * 3.7.6v3.7.6Ned Deily2019-12-181-1/+1
| * bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Cat...Miss Islington (bot)2019-12-181-1/+1
| * Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17580)Miss Islington (bot)2019-12-181-3/+4
* | bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (GH-17652...Miss Islington (bot)2019-12-181-3/+11
* | bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Cat...Miss Islington (bot)2019-12-171-1/+1
* | Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17580)Miss Islington (bot)2019-12-161-3/+4
* | [3.7] Fix elif start column offset when there is an else following (GH-17596)...Pablo Galindo2019-12-141-0/+9
* | bpo-36406: Handle namespace packages in doctest (GH-12520) (GH-17592)Miss Islington (bot)2019-12-132-2/+7
* | [3.7] bpo-39031: Include elif keyword when producing lineno/col-offset info f...Pablo Galindo2019-12-131-0/+9
|/
* 3.7.6rc1v3.7.6rc1Ned Deily2019-12-111-82/+143
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17...Ned Deily2019-12-102-24/+42
* bpo-38943: Fix IDLE autocomplete window not always appearing (GH-17416)Miss Islington (bot)2019-12-092-0/+4
* bpo-38944: Escape key now closes IDLE completion windows. (GH-17419)Miss Islington (bot)2019-12-092-1/+4
* bpo-34776: Fix dataclasses to support __future__ "annotations" mode (GH-9518)...Miss Islington (bot)2019-12-093-34/+77
* bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)Miss Islington (bot)2019-12-091-10/+10
* bpo-38547: Fix test_pty if the process is the session leader (GH-17519)Miss Islington (bot)2019-12-091-3/+16
* bpo-38669: patch.object now raises a helpful error (GH17511)Miss Islington (bot)2019-12-092-0/+8
* bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497)Miss Islington (bot)2019-12-081-3/+4
* [3.7] bpo-38820: OpenSSL 3.0.0 compatibility. (GH-17190) (GH-17500)Miss Islington (bot)2019-12-071-6/+6
* bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions...Miss Islington (bot)2019-12-071-0/+10
* bpo-36820: Break unnecessary cycle in socket.py, codeop.py and dyld.py (GH-13...Miss Islington (bot)2019-12-063-5/+14
* bpo-33684: json.tool: Use utf-8 for infile and outfile. (GH-17460)Inada Naoki2019-12-042-5/+20
* 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-26730: Fix SpooledTemporaryFile data corruption (GH-17400)Inada Naoki2019-11-282-14/+19
* [3.7] bpo-38862: IDLE Strip Trailing Whitespace fixes end newlines (GH-17366...Terry Jan Reedy2019-11-265-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-17253)Miss Islington (bot)2019-11-221-9/+19
* [3.7] bpo-16576: Add checks for bitfields passed by value to functions. (GH-1...Miss Islington (bot)2019-11-211-0/+81
* bpo-37838: get_type_hints for wrapped functions with forward reference (GH-17...Miss Islington (bot)2019-11-213-1/+27
* 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-194-6/+45
* bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Miss Islington (bot)2019-11-191-0/+27
* Fix typo in Lib/socketserver.py (GH-17024)Miss Islington (bot)2019-11-161-1/+1
* bpo-38785: Prevent asyncio from crashing (GH-17144)Miss Islington (bot)2019-11-132-1/+43