Skip to content
Permalink
Branch: 3.7
Commits on Dec 30, 2019
  1. bpo-34118: memoryview, range, and tuple are classes (GH-17761)

    miss-islington and terryjreedy committed Dec 30, 2019
    Tag memoryview, range, and tuple as classes, the same as list, etcetera, in
    the library manual built-in functions list.
    (cherry picked from commit ee9ff05)
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  2. [3.7] bpo-38610: Fix possible crashes in several list methods (GH-17022

    pablogsal and ZackerySpytz committed Dec 30, 2019
    …) (GH-17759)
    
    Hold strong references to list elements while calling PyObject_RichCompareBool()..
    (cherry picked from commit d9e561d)
    
    Co-authored-by: Zackery Spytz <zspytz@gmail.com>
    
    Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Commits on Dec 29, 2019
  1. Fix typos and remove deprecated deprecation warning. (GH-17741)

    miss-islington and awecx committed Dec 29, 2019
    (cherry picked from commit 32a12ae)
    
    Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com>
  2. [3.7] bpo-39136: Fixed typos (GH-17720)

    terryjreedy committed Dec 29, 2019
    focusses -> focuses; follwing -> following; Excape -> Escape.
    
    (cherry picked from commit 6c7bb38)
Commits on Dec 28, 2019
  1. Reorder entries in Misc/ACKS (GH-17663) (GH-17672)

    merwok committed Dec 28, 2019
  2. bpo-39144 Align ctags and etags behaviours in the makefile and includ…

    miss-islington and tonybaloney committed Dec 28, 2019
    …e Python stdlib files (GH-17721)
    
    (cherry picked from commit ef7eaaf)
    
    Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com>
Commits on Dec 27, 2019
  1. closes bpo-30364: Replace deprecated no_address_safety_analysis attri…

    miss-islington and isidentical committed Dec 27, 2019
    …bute. (GH-17702)
    
    (cherry picked from commit c0052f3)
    
    Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com>
Commits on Dec 25, 2019
  1. Minor C API documentation improvements. (GH-17698)

    2 people authored and benjaminp committed Dec 25, 2019
    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 5c7ed75)
    
    Co-authored-by: William Ayd <william.ayd@icloud.com>
Commits on Dec 23, 2019
Commits on Dec 20, 2019
  1. bpo-38918: Add __module__ entry for function & method type in inspect…

    miss-islington and parthsharma2 committed Dec 20, 2019
    … docs table (GH-17408)
    
    Adds` __module__ ` entries for function & method types in inspect docs table.
    
    https://bugs.python.org/issue38918
    (cherry picked from commit f522a6d)
    
    Co-authored-by: Parth Sharma <parthsharma2@users.noreply.github.com>
Commits on Dec 19, 2019
  1. [3.7] bpo-38316: Fix co_stacksize documentation (GH-16983). (GH-17660)

    isidentical authored and miss-islington committed Dec 19, 2019
    (cherry picked from commit d587272)
    
    Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com>
    
    
    
    
    
    https://bugs.python.org/issue38316
    
    
    
    Automerge-Triggered-By: @vstinner
  2. Post release updates

    ned-deily committed Dec 19, 2019
  3. Merge tag 'v3.7.6' into 3.7

    ned-deily committed Dec 19, 2019
Commits on Dec 18, 2019
  1. bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (G…

    miss-islington and vstinner committed Dec 18, 2019
    …H-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 673c393)
    (cherry picked from commit b0eb046)
    
    Co-authored-by: Victor Stinner <vstinner@python.org>
  2. 3.7.6

    ned-deily committed Dec 18, 2019
  3. bpo-38295: prevent test_relative_path of test_py_compile failure on m…

    miss-islington and ned-deily committed Dec 17, 2019
    …acOS Catalina (GH-17636)
    
    (cherry picked from commit bf3aa10)
    
    Co-authored-by: Ned Deily <nad@python.org>
  4. Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17580)

    2 people authored and ned-deily committed Dec 17, 2019
    Co-authored-by: tirkarthi
    (cherry picked from commit 1988344)
    
    Co-authored-by: Kyle Stanley <aeros167@gmail.com>
  5. [3.7] Add whatsnew for removal of asyncio.loop.create_datagram_endpoi…

    aeros authored and ned-deily committed Dec 17, 2019
    …nt()'s *reuse_address* parameter (GH-17595). (GH-17631)
    
    (cherry picked from commit f501db2)
    
    Co-authored-by: Kyle Stanley <aeros167@gmail.com>
  6. Add PYTHONUTF8 to commandline usage. (GH-17587) (GH-17599)

    methane authored and ned-deily committed Dec 14, 2019
    Co-Authored-By: Victor Stinner <vstinner@python.org>
    (cherry picked from commit 95826c7)
Commits on Dec 17, 2019
  1. bpo-38295: prevent test_relative_path of test_py_compile failure on m…

    miss-islington and ned-deily committed Dec 17, 2019
    …acOS Catalina (GH-17636)
    
    (cherry picked from commit bf3aa10)
    
    Co-authored-by: Ned Deily <nad@python.org>
  2. Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17580)

    2 people authored and ned-deily committed Dec 17, 2019
    Co-authored-by: tirkarthi
    (cherry picked from commit 1988344)
    
    Co-authored-by: Kyle Stanley <aeros167@gmail.com>
  3. [3.7] Add whatsnew for removal of asyncio.loop.create_datagram_endpoi…

    aeros authored and ned-deily committed Dec 17, 2019
    …nt()'s *reuse_address* parameter (GH-17595). (GH-17631)
    
    (cherry picked from commit f501db2)
    
    Co-authored-by: Kyle Stanley <aeros167@gmail.com>
Commits on Dec 14, 2019
  1. bpo-39035: travis: Don't use beta group (GH-17604)

    methane committed Dec 14, 2019
  2. [3.7] Fix elif start column offset when there is an else following (G…

    pablogsal and lysnikolaou committed Dec 14, 2019
    …H-17596) (GH-17601)
    
    (cherry picked from commit 5936a4c)
    
    Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
  3. Add PYTHONUTF8 to commandline usage. (GH-17587) (GH-17599)

    methane authored and vstinner committed Dec 14, 2019
    Co-Authored-By: Victor Stinner <vstinner@python.org>
    (cherry picked from commit 95826c7)
Commits on Dec 13, 2019
  1. bpo-36406: Handle namespace packages in doctest (GH-12520) (GH-17592)

    2 people authored and brettcannon committed Dec 13, 2019
    (cherry picked from commit 8289e27)
    
    Co-authored-by: Xtreak <tir.karthi@gmail.com>
  2. [3.7] bpo-39031: Include elif keyword when producing lineno/col-offse…

    pablogsal and lysnikolaou committed Dec 13, 2019
    …t info 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 025a602)
    
    Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Commits on Dec 11, 2019
  1. Post release updates

    ned-deily committed Dec 11, 2019
  2. 3.7.6rc1

    ned-deily committed Dec 11, 2019
  3. bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (

    ned-deily and aeros committed Dec 11, 2019
    GH-17311) (GH-17570)
    
    (cherry picked from commit ab513a3)
    
    Co-authored-by: Kyle Stanley <aeros167@gmail.com>
Commits on Dec 10, 2019
  1. bpo-38943: Fix IDLE autocomplete window not always appearing (GH-17416)

    miss-islington and JohnnyNajera committed Dec 10, 2019
    This has happened on some versions of Ubuntu.
    (cherry picked from commit bbc4162)
    
    Co-authored-by: JohnnyNajera <58344607+JohnnyNajera@users.noreply.github.com>
Commits on Dec 9, 2019
  1. bpo-38944: Escape key now closes IDLE completion windows. (GH-17419)

    miss-islington and JohnnyNajera committed Dec 9, 2019
    (cherry picked from commit 232689b)
    
    Co-authored-by: JohnnyNajera <58344607+JohnnyNajera@users.noreply.github.com>
  2. bpo-34776: Fix dataclasses to support __future__ "annotations" mode (G…

    2 people authored and ambv committed Dec 9, 2019
    …H-9518) (#17532)
    
    (cherry picked from commit d219cc4)
    
    Co-authored-by: Yury Selivanov <yury@magic.io>
  3. bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)

    miss-islington and vstinner committed Dec 9, 2019
    Fix asyncio when the ssl module is missing: only check for
    ssl.SSLSocket instance if the ssl module is available.
    (cherry picked from commit 82b4950)
    
    Co-authored-by: Victor Stinner <vstinner@python.org>
Older
You can’t perform that action at this time.