summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [3.7] bpo-39234: `enum.auto()` default initial value as 1 (GH-17878)backport-24bcefc-3.7YoSTEALTH2020-01-061-1/+1
| | | | | | | | | | | Updated as Eric mentioned "By default, the initial value starts at 1" https://bugs.python.org/issue39234 Automerge-Triggered-By: @ericvsmith. (cherry picked from commit 24bcefcb74231476b055bb6f0726642abeb10f04) Co-authored-by: YoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com>
* bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873)Miss Islington (bot)2020-01-061-1/+1
| | | | | | | | https://bugs.python.org/issue39041 Automerge-Triggered-By: @zooba (cherry picked from commit b1ce22d086660d2505010694c8813cc67adf8f9e) Co-authored-by: Steve Dower <steve.dower@python.org>
* bpo-39041: Add GitHub Actions support (GH-17594)Miss Islington (bot)2020-01-065-3/+238
| | | | | (cherry picked from commit a76ba362c4d86adf5e7f8254398135d12d7afd25) Co-authored-by: Steve Dower <steve.dower@python.org>
* Minor formatting improvements and fixes to idle.rst (GH-17165)Miss Islington (bot)2020-01-062-14/+16
| | | | | (cherry picked from commit d6c08db8538d046d783db44fe4e70a60af0fb02e) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
* Fix the parameter list of object. _rpow_ (GH-GH-16477)Miss Islington (bot)2020-01-051-1/+1
| | | | | (cherry picked from commit abc0c4fa9970931849b3da598c5980a5b170661e) Co-authored-by: HongWeipeng <961365124@qq.com>
* Replace links in howto/pyporting.rst with sphinx references (GH-17781)Miss Islington (bot)2020-01-051-7/+3
| | | | | | Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com> (cherry picked from commit e6ae90dede07e8599cc6906417ca4aa99d8aa6e4) Co-authored-by: Oleg Höfling <hoefling@users.noreply.github.com>
* bpo-39152: add missing ttk.Scale.configure return value (GH-17815)Miss Islington (bot)2020-01-053-11/+9
| | | | | | | tkinter.ttk.Scale().configure([name]) now returns a configuration tuple for name or a list thereof for all options. Based on patch Giovanni Lombardo. (cherry picked from commit 5ea7bb25e3b192d6c49a49c9e3b316f8559602aa) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)Miss Islington (bot)2020-01-053-17/+38
| | | | | | No longer import the re module if it is not needed. (cherry picked from commit 41ec17e45d54473d32f543396293256f1581e44d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. ↵Miss Islington (bot)2020-01-053-1/+4
| | | | | | | (GH-17616) (cherry picked from commit b19c0d77e6f25ea831ab608c71f15d0d9266c8c4) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Miss Islington (bot)2020-01-054-13/+39
| | | | | | Ignore leading dots and no longer ignore a trailing newline. (cherry picked from commit 6a265f0d0c0a4b3b8fecf4275d49187a384167f4) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.7] bpo-39191: Don't spawn a task before failing (GH-17796) (#17821)Andrew Svetlov2020-01-042-3/+10
| | | | | (cherry picked from commit 3a5de511596f17575de082dcb8d43d63b2bd2da9) Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
* Update copyright year in macOS installer license copy (GH-17806)Miss Islington (bot)2020-01-021-3/+3
| | | | | (cherry picked from commit 32f1443aa98db769d87db497b45bd0dcb732445b) Co-authored-by: Ned Deily <nad@python.org>
* [3.7] Bring Python into the next decade. (GH-17801). (GH-17803)Benjamin Peterson2020-01-028-13/+9
| | | | | (cherry picked from commit 946b29ea0b3b386ed05e87e60b8617c9dc19cd53) Co-authored-by: Benjamin Peterson <benjamin@python.org>
* bpo-39183: Fix formatting in library/ensurepip (GH-17787)Miss Islington (bot)2020-01-011-1/+1
| | | | | | | | Remove extra space to fix formatting and avoid from splitting text in to strings. https://bugs.python.org/issue39183 (cherry picked from commit 149175c6dfc8455023e4335575f3fe3d606729f9) Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
* bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. ↵Miss Islington (bot)2020-01-013-1/+37
| | | | | (GH-17773) (GH-17786) (cherry picked from commit 46abfc1416ff8e450999611ef8f231ff871ab133)
* Fix idlelib README typo. (GH-17770)Miss Islington (bot)2019-12-311-1/+1
| | | | | (cherry picked from commit ba82ee894cf0f6ec9e9f6a313c870ffd2db377e6) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* [3.7] bpo-38588: Fix possible crashes in dict and list when calling P… ↵Dong-hee Na2019-12-315-1/+50
| | | | | | | | | | | | | | | | | | | | (GH-17765) * [3.7] bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734) Take strong references before calling PyObject_RichCompareBool to protect against the case where the object dies during the call.. (cherry picked from commit 2d5bf568eaa5059402ccce9ba5a366986ba27c8a) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> * methane's suggestion methane's suggestion Co-Authored-By: Inada Naoki <songofacandy@gmail.com> Co-authored-by: Inada Naoki <songofacandy@gmail.com>
* bpo-34118: memoryview, range, and tuple are classes (GH-17761)Miss Islington (bot)2019-12-302-3/+5
| | | | | | | Tag memoryview, range, and tuple as classes, the same as list, etcetera, in the library manual built-in functions list. (cherry picked from commit ee9ff05ec22ecd47dbffdd361967ccd55963dad2) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* [3.7] bpo-38610: Fix possible crashes in several list methods (GH-17022) ↵Pablo Galindo2019-12-303-3/+40
| | | | | | | | | | | (GH-17759) Hold strong references to list elements while calling PyObject_RichCompareBool().. (cherry picked from commit d9e561d23d994e3ed15f4fcbd7ee5c8fe50f190b) Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Zackery Spytz <zspytz@gmail.com>
* Fix typos and remove deprecated deprecation warning. (GH-17741)Miss Islington (bot)2019-12-291-11/+4
| | | | | (cherry picked from commit 32a12aed6da41f49a5ca05e6de34f5f93ea1dc33) Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com>
* [3.7] bpo-39136: Fixed typos (GH-17720)Terry Jan Reedy2019-12-293-4/+4
| | | | | focusses -> focuses; follwing -> following; Excape -> Escape. (cherry picked from commit 6c7bb38)
* Reorder entries in Misc/ACKS (GH-17663) (GH-17672)Éric Araujo2019-12-281-3/+4
|
* bpo-39144 Align ctags and etags behaviours in the makefile and include ↵Miss Islington (bot)2019-12-272-0/+4
| | | | | | | Python stdlib files (GH-17721) (cherry picked from commit ef7eaafc9d2e370cf79b3674e56f643bbfe239e2) Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com>
* closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. ↵Miss Islington (bot)2019-12-261-7/+7
| | | | | | | (GH-17702) (cherry picked from commit c0052f3fe3d19820b2d4f76e383035439affe32c) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com>
* Minor C API documentation improvements. (GH-17698)Miss Islington (bot)2019-12-242-2/+2
| | | | | | | | | | | The added parentheses around the PyIter_Next assignment suppress the following warning which gcc throws without: ``` warning: using the result of an assignment as a condition without parentheses [-Wparentheses] ``` The other change is a typo fix (cherry picked from commit 5c7ed7550ec2da16d7679e538fcd7c1a5631811f) Co-authored-by: William Ayd <william.ayd@icloud.com>
* [3.7] bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) (GH-17685)Bar Harel2019-12-233-1/+15
| | | https://bugs.python.org/issue38878
* bpo-38918: Add __module__ entry for function & method type in inspect docs ↵Miss Islington (bot)2019-12-202-0/+9
| | | | | | | | | | table (GH-17408) Adds` __module__ ` entries for function & method types in inspect docs table. https://bugs.python.org/issue38918 (cherry picked from commit f522a6ddb67a238bab5673608111f74ec4e22205) Co-authored-by: Parth Sharma <parthsharma2@users.noreply.github.com>
* [3.7] bpo-38316: Fix co_stacksize documentation (GH-16983). (GH-17660)Batuhan Taşkaya2019-12-191-2/+2
| | | | | | | | | | | | | | | (cherry picked from commit d587272fe3b0fcad2f23a490e76f9f82ca7d64ef) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> https://bugs.python.org/issue38316 Automerge-Triggered-By: @vstinner
* Post release updatesNed Deily2019-12-183-4/+3
|
* Merge tag 'v3.7.6' into 3.7Ned Deily2019-12-184-6/+13
|\
| * 3.7.6v3.7.6Ned Deily2019-12-185-7/+13
| |
| * bpo-38295: prevent test_relative_path of test_py_compile failure on macOS ↵Miss Islington (bot)2019-12-182-1/+2
| | | | | | | | | | | | | | Catalina (GH-17636) (cherry picked from commit bf3aa1060a29a05813abbe877193af16e3e7131e) Co-authored-by: Ned Deily <nad@python.org>
| * Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17580)Miss Islington (bot)2019-12-181-3/+4
| | | | | | | | | | | | Co-authored-by: tirkarthi (cherry picked from commit 1988344a6bff253f017e053f69318ecf03587294) Co-authored-by: Kyle Stanley <aeros167@gmail.com>
| * [3.7] Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s ↵Kyle Stanley2019-12-182-0/+20
| | | | | | | | | | | | | | *reuse_address* parameter (GH-17595). (GH-17631) (cherry picked from commit f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a) Co-authored-by: Kyle Stanley <aeros167@gmail.com>
| * bpo-39035: travis: Don't use beta group (GH-17604)Inada Naoki2019-12-181-1/+0
| |
| * Add PYTHONUTF8 to commandline usage. (GH-17587) (GH-17599)Inada Naoki2019-12-181-0/+1
| | | | | | | | Co-Authored-By: Victor Stinner <vstinner@python.org> (cherry picked from commit 95826c773a9004fc5b3c89de55f800504685ab21)
* | bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() ↵Miss Islington (bot)2019-12-182-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | (GH-17652) (GH-17655) Fix test_ressources_gced_in_workers() of test_concurrent_futures: explicitly stop the manager to prevent leaking a child process running in the background after the test completes. (cherry picked from commit 673c39331f844a80c465efd7cff88ac55c432bfb) (cherry picked from commit b0eb046cbd0dbb7b17f16aad6de20fac5305f387) Co-authored-by: Victor Stinner <vstinner@python.org>
* | bpo-38295: prevent test_relative_path of test_py_compile failure on macOS ↵Miss Islington (bot)2019-12-172-1/+2
| | | | | | | | | | | | | | Catalina (GH-17636) (cherry picked from commit bf3aa1060a29a05813abbe877193af16e3e7131e) Co-authored-by: Ned Deily <nad@python.org>
* | Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17580)Miss Islington (bot)2019-12-161-3/+4
| | | | | | | | | | | | Co-authored-by: tirkarthi (cherry picked from commit 1988344a6bff253f017e053f69318ecf03587294) Co-authored-by: Kyle Stanley <aeros167@gmail.com>
* | [3.7] Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s ↵Kyle Stanley2019-12-162-0/+20
| | | | | | | | | | | | | | *reuse_address* parameter (GH-17595). (GH-17631) (cherry picked from commit f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a) Co-authored-by: Kyle Stanley <aeros167@gmail.com>
* | bpo-39035: travis: Don't use beta group (GH-17604)Inada Naoki2019-12-141-1/+0
| |
* | [3.7] Fix elif start column offset when there is an else following ↵Pablo Galindo2019-12-142-2/+11
| | | | | | | | | | | | | | (GH-17596) (GH-17601) (cherry picked from commit 5936a4ce914d42af97b9238e5090dedc8d5b0bd2) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
* | Add PYTHONUTF8 to commandline usage. (GH-17587) (GH-17599)Inada Naoki2019-12-141-0/+1
| | | | | | | | Co-Authored-By: Victor Stinner <vstinner@python.org> (cherry picked from commit 95826c773a9004fc5b3c89de55f800504685ab21)
* | bpo-36406: Handle namespace packages in doctest (GH-12520) (GH-17592)Miss Islington (bot)2019-12-133-2/+8
| | | | | | | | | | (cherry picked from commit 8289e27393395ee903bd096d42e07c112d7f15c6) Co-authored-by: Xtreak <tir.karthi@gmail.com>
* | [3.7] bpo-39031: Include elif keyword when producing lineno/col-offset info ↵Pablo Galindo2019-12-133-2/+13
|/ | | | | | | | | | | | for if_stmt (GH-17582) (#17584) When parsing an "elif" node, lineno and col_offset of the node now point to the "elif" keyword and not to its condition, making it consistent with the "if" node. https://bugs.python.org/issue39031 Automerge-Triggered-By: @pablogsal. (cherry picked from commit 025a602af7ee284d8db6955c26016f3f27d35536) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
* Post release updatesNed Deily2019-12-112-3/+3
|
* 3.7.6rc1v3.7.6rc1Ned Deily2019-12-1160-204/+726
|
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR ↵Ned Deily2019-12-104-29/+67
| | | | | | | (GH-17311) (GH-17570) (cherry picked from commit ab513a38c98695f271e448fe2cb7c5e39eeaaaaf) Co-authored-by: Kyle Stanley <aeros167@gmail.com>
* bpo-38943: Fix IDLE autocomplete window not always appearing (GH-17416)Miss Islington (bot)2019-12-093-0/+6
| | | | | | This has happened on some versions of Ubuntu. (cherry picked from commit bbc4162bafe018f07bab0b624b37974cc33daad9) Co-authored-by: JohnnyNajera <58344607+JohnnyNajera@users.noreply.github.com>
* bpo-38944: Escape key now closes IDLE completion windows. (GH-17419)Miss Islington (bot)2019-12-093-1/+5
| | | | | (cherry picked from commit 232689b40d8fcbbac27c8705607ff482ea5b46f8) Co-authored-by: JohnnyNajera <58344607+JohnnyNajera@users.noreply.github.com>