Skip to content
Permalink
3.9
Loading

Commits on Dec 11, 2021

  1. [3.10] bpo-13236: Flush the output stream more often in unittest (GH-…

    …29929) (GH-30039)
    
    It can prevent some losses when output to buffered stream..
    (cherry picked from commit 83fa129)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    miss-islington and serhiy-storchaka committed Dec 11, 2021
  2. bpo-19737: Improved the documentation for globals (GH-29823) (GH-30042)

    Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    (cherry picked from commit 4fe5585)
    
    Co-authored-by: 180909 <734461790@qq.com>
    miss-islington and 180909 committed Dec 11, 2021
  3. bpo-45822: Minor cleanups to the test_Py_CompileString test (GH-29750) (

    GH-29759)
    
    (cherry picked from commit abfc794)
    
    Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
    miss-islington and pablogsal committed Dec 11, 2021
  4. [doc] Clarify MRO precedence in descriptor super binding section (GH-…

    …29539) (GH-29670)
    
    A similar sentence is present in the 'Invocation from super' section of
    the descriptor HOWTO, where it is already correct.
    (cherry picked from commit ee49484)
    
    Co-authored-by: Jouke Witteveen <j.witteveen@gmail.com>
    miss-islington and joukewitteveen committed Dec 11, 2021

Commits on Dec 10, 2021

  1. bpo-42114: ctypes documentation: fix winmode parameter default value (G…

    …H-29976) (GH-30038)
    
    Signed-off-by: Louis Sautier <sautier.louis@gmail.com>
    (cherry picked from commit c1051e0)
    
    Co-authored-by: Louis Sautier <sautier.louis@gmail.com>
    miss-islington and sbraz committed Dec 10, 2021
  2. [3.9] bpo-43749: Ensure current exe is copied when using venv on wind…

    …ows (GH-25216) (GH-30033)
    
    Co-authored-by: Ian Norton <inorton@gmail.com>
    miss-islington and inorton committed Dec 10, 2021
  3. bpo-46000: Improve NetBSD curses compatibility (GH-29947) (GH-30023)

    (cherry picked from commit 2fb797e)
    
    Co-authored-by: Thomas Klausner <tk@giga.or.at>
    miss-islington and 0-wiz-0 committed Dec 10, 2021
  4. bpo-42182: stdtypes doc - update and fix links to several dunder meth…

    …ods (GH-27384)
    
    (cherry picked from commit 8c74713)
    
    Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
    miss-islington and akulakov committed Dec 10, 2021
  5. [3.9] bpo-45662: Fix the repr of InitVar with a type alias to the bui…

    …lt-in class (GH-29291) (GH-29924)
    
    For example, InitVar[list[int]].
    (cherry picked from commit 1fd4de5)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    miss-islington and serhiy-storchaka committed Dec 10, 2021

Commits on Dec 9, 2021

  1. bpo-46018: Ensure that math.expm1 does not raise on underflow (GH-29997)

    (cherry picked from commit 3363e1c)
    
    Co-authored-by: Steve Dower <steve.dower@python.org>
    miss-islington and zooba committed Dec 9, 2021

Commits on Dec 8, 2021

  1. Fix double-space in exception message (GH-29955) (GH-29983)

    (cherry picked from commit c602c1b)
    
    Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
    
    Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
    miss-islington and nedbat committed Dec 8, 2021

Commits on Dec 7, 2021

  1. bpo-35821: Fix restructuredtext code formatting in logging.rst (GH-29963

    )
    
    (cherry picked from commit c7e7a4b)
    
    Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
    miss-islington and Fidget-Spinner committed Dec 7, 2021
  2. bpo-45664: Fix resolve_bases() and new_class() for GenericAlias insta…

    …nce as a base (GH-29298) (GH-29928)
    
    (cherry picked from commit 2b318ce)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    miss-islington and serhiy-storchaka committed Dec 7, 2021
  3. bpo-46001: Change OverflowError to RecursionError in JSON library doc…

    …strings (GH-29943)
    
    (cherry picked from commit 8db0652)
    
    Co-authored-by: James Gerity <snoopjedi@gmail.com>
    miss-islington and SnoopJeDi committed Dec 7, 2021

Commits on Dec 6, 2021

  1. [3.9] bpo-44035: Check autoconf files thoroughly (GH-29935) (GH-29938)

    Co-authored-by: Christian Heimes <christian@python.org>
    tiran committed Dec 6, 2021

Commits on Dec 5, 2021

  1. bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of…

    … types.GenericAlias (GH-29294)
    
    (cherry picked from commit 446be16)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    miss-islington and serhiy-storchaka committed Dec 5, 2021
  2. bpo-27946: Fix possible crash in ElementTree.Element (GH-29915)

    Getting an attribute via attrib.get() simultaneously with replacing
    the attrib dict can lead to access to deallocated dict.
    (cherry picked from commit d15cdb2)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    miss-islington and serhiy-storchaka committed Dec 5, 2021

Commits on Dec 4, 2021

  1. bpo-45916: Use HTTPS link for The Perils of Floating Point (GH-29896)

    (cherry picked from commit 9f2f7e4)
    
    Co-authored-by: Zachary Ware <zach@python.org>
    miss-islington and zware committed Dec 4, 2021

Commits on Dec 2, 2021

  1. docs: Improve example for urlparse() (GH-29816) (GH-29889)

    (cherry picked from commit 226d22f)
    
    Co-authored-by: Christian Clauss <cclauss@me.com>
    miss-islington and cclauss committed Dec 2, 2021

Commits on Dec 1, 2021

  1. bpo-45896: Fix docs default asyncio event loop on Windows (GH-29857) (G…

    …H-29878)
    
    (cherry picked from commit f27bef3)
    
    Co-authored-by: Rob <r4226@pm.me>
    
    Co-authored-by: Rob <r4226@pm.me>
    miss-islington and rob4226 committed Dec 1, 2021

Commits on Nov 30, 2021

  1. bpo-37658: Actually return result in race condition (GH-29202) (GH-29832

    )
    
    (cherry picked from commit 934a826)
    
    Co-authored-by: Sam Bull <aa6bs0@sambull.org>
    
    Co-authored-by: Sam Bull <aa6bs0@sambull.org>
    miss-islington and Dreamsorcerer committed Nov 30, 2021
  2. bpo-33381: [doc] strftime's %f option may pad zeros on the left or th…

    …e right (GH-29801) (GH-29863)
    
    (cherry picked from commit f97ec09)
    
    Co-authored-by: Vishal Pandey <vishalpandeyviptsk@gmail.com>
    miss-islington and vishalpandeyvip committed Nov 30, 2021

Commits on Nov 29, 2021

  1. bpo-45931: Prevent Directory.Build.props/targets from leaking from di…

    …rectories above the repo when building on Windows (GH-29854)
    
    (cherry picked from commit 734ed35)
    
    Co-authored-by: David Federman <david.federman@outlook.com>
    miss-islington and dfederm committed Nov 29, 2021
  2. bpo-43905: Expand dataclasses.astuple() and asdict() docs (GH-26154)

    Expanded ``astuple()`` docs, warning about deepcopy being applied
    and providing a workaround.
    
    Automerge-Triggered-By: GH:ericvsmith
    (cherry picked from commit c1f93f0)
    
    Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
    miss-islington and akulakov committed Nov 29, 2021
  3. bpo-43498: Fix dictionary iteration error in _ExecutorManagerThread (G…

    …H-24868)
    
    (cherry picked from commit 7431448)
    
    Co-authored-by: Jakub Kulík <Kulikjak@gmail.com>
    miss-islington and kulikjak committed Nov 29, 2021

Commits on Nov 28, 2021

  1. [3.9] bpo-19460: Add test for MIMENonMultipart (GH-29817) (#29819)

    * bpo-19460: Add test for MIMENonMultipart (GH-29817)
    (cherry picked from commit 46c8d91)
    
    Co-authored-by: 180909 <wjh180909@gmail.com>
    
    * Update 2021-11-28-15-25-02.bpo-19460.lr0aWs.rst
    
    Co-authored-by: 180909 <wjh180909@gmail.com>
    Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
    3 people committed Nov 28, 2021

Commits on Nov 27, 2021

  1. [3.9] bpo-41735: Fix thread lock in zlib.Decompress.flush() may go wr…

    …ong (GH-29588)
    
    * Fix thread lock in zlib.Decompress.flush() may go wrong
    Getting `.unconsumed_tail` before acquiring the thread lock may mix up decompress state.
    
    backport of #29587 to 3.9/3.8.
    animalize committed Nov 27, 2021

Commits on Nov 26, 2021

  1. bpo-45866: Fix typo in the NEWS entry (GH-29798)

    (cherry picked from commit 9a7611a)
    
    Co-authored-by: Victor Stinner <vstinner@python.org>
    miss-islington and vstinner committed Nov 26, 2021
  2. bpo-45866: pegen strips directory of "generated from" header (GH-29777)…

    … (GH-29792) (GH-29797)
    
    "make regen-all" now produces the same output when run from a
    directory other than the source tree: when building Python out of the
    source tree.
    
    (cherry picked from commit 253b7a0)
    (cherry picked from commit b6defde)
    vstinner committed Nov 26, 2021
Older