Skip to content
Permalink
3.8

Commits on Jan 29, 2021

  1. bpo-43008: Add 'Patch by Ken Hilton' (GH-24370)

    (cherry picked from commit 11d75ec)
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    miss-islington and terryjreedy committed Jan 29, 2021
  2. bpo-23544: Disable IDLE Stack Viewer when running user code (GH-17163) (

    #24366)
    
    Starting stack viewer when user code is running, including when Debugger is active, hangs or crashes IDLE.
    
    Co-authored-by: Zackery Spytz <zspytz@gmail.com>
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    (cherry picked from commit 23a567c)
    miss-islington committed Jan 29, 2021

Commits on Jan 28, 2021

  1. bpo-29076: Add fish support to macOS installer (GH-23302) (GH-23938)

    (cherry picked from commit 7f162e8)
    
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    miss-islington and erlend-aasland committed Jan 28, 2021

Commits on Jan 27, 2021

  1. bpo-43008: Make IDLE respect sys.excepthook (GH-24302)

    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    (cherry picked from commit 7a34380)
    
    Co-authored-by: Ken <kenny2minecraft@gmail.com>
    miss-islington and Kenny2github committed Jan 27, 2021

Commits on Jan 26, 2021

  1. [3.8] bpo-41841: Prepare IDLE NEWS for 3.8.8 (GH-24344)

    terryjreedy committed Jan 26, 2021
  2. [3.8] bpo-42383: pdb: do not fail to restart the target if the curre…

    …nt directory changed (GH-23412) (#24323)
    hexagonrecursion committed Jan 26, 2021

Commits on Jan 25, 2021

  1. bpo-43013: Fix old tkinter module names in idlelib (GH-24326)

    Lowercase 'tkColorChooser', 'tkFileDialog', 'tkSimpleDialog', and
    'tkMessageBox' and remove 'tk'.  Just lowercase 'tkFont' as 'font'
    is already used.  Adjust import.
    (cherry picked from commit 879986d)
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    miss-islington and terryjreedy committed Jan 25, 2021
  2. [3.9] bpo-33289: Return RGB triplet of ints instead of floats from tk…

    …inter.colorchooser (GH-6578). (GH-24318)
    
    (cherry picked from commit 6713e86)
    
    Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
    (cherry picked from commit 3d5434d)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    miss-islington and serhiy-storchaka committed Jan 25, 2021

Commits on Jan 24, 2021

  1. bpo-43013: Update idlelib code to 3.x (GH-24315) (#24317)

    Remove 9 remaining '(object)' occurrences in class headers in idlelib
    and 25 '()' occurrences in idlelib.idle_test class headers.
    (cherry picked from commit 8dfe156)
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    miss-islington committed Jan 24, 2021

Commits on Jan 23, 2021

  1. closes bpo-43011: Fix DeprecationWarnings in test_ctypes (GH-24305)

    (cherry picked from commit f7fa64f)
    
    Co-authored-by: Zackery Spytz <zspytz@gmail.com>
    miss-islington and ZackerySpytz committed Jan 23, 2021

Commits on Jan 22, 2021

  1. bpo-40304: Correct type(name, bases, dict) doc (GH-19553)

    Co-authored-by: Éric Araujo <merwok@netwok.org>
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    Co-authored-by: Tal Einat <532281+taleinat@users.noreply.github.com>
    (cherry picked from commit 644d528)
    
    Co-authored-by: Борис Верховский <boris.verk@gmail.com>
    miss-islington and verhovsky committed Jan 22, 2021

Commits on Jan 21, 2021

  1. bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (

    …GH-24172) (GH-24277)
    
    (cherry picked from commit 7dc71c4)
    cptpcrd committed Jan 21, 2021

Commits on Jan 20, 2021

  1. Fix typos in unittest documentation (GH-24194)

    * addCleanupClass  -> addClassCleanup
    * doCleanupsClass -> doClassCleanups
    (cherry picked from commit e0e398e)
    
    Co-authored-by: Conchylicultor <etiennefg.pot@gmail.com>
    miss-islington and Conchylicultor committed Jan 20, 2021
  2. bpo-36769: Document that fnmatch.filter supports any kind of iterable (

    …GH-13039)
    
    (cherry picked from commit e8d2264)
    
    Co-authored-by: Andre Delfino <adelfino@gmail.com>
    miss-islington and andresdelfino committed Jan 20, 2021
  3. bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)

    (cherry picked from commit 3554fa4)
    
    Co-authored-by: Zhiming Wang <i@zhimingwang.org>
    miss-islington and zmwangx committed Jan 20, 2021

Commits on Jan 18, 2021

  1. closes bpo-42938: Replace snprintf with Python unicode formatting in …

    …ctypes param reprs. (GH-24248)
    
    (cherry picked from commit 916610e)
    
    Co-authored-by: Benjamin Peterson <benjamin@python.org>
    
    Co-authored-by: Benjamin Peterson <benjamin@python.org>
    miss-islington and benjaminp committed Jan 18, 2021

Commits on Jan 16, 2021

  1. [3.8] bpo-42531: Teach importlib.resources.path to handle packages wi…

    …thout __file__ (GH-23611)
    
    Fixes [bpo-42531]() for Python 3.8.
    
    The issue also applies to 3.7. If this PR looks like it'll be accepted, I can cherry-pick it to the 3.7 branch and submit a follow-up PR.
    
    Automerge-Triggered-By: GH:jaraco
    wkschwartz committed Jan 16, 2021

Commits on Jan 12, 2021

  1. [3.8] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-2…

    …3999) (GH-24120)
    
    Co-Authored-By: Andreas Schneider <asn@cryptomilk.org>
    Co-Authored-By: Antoine Pitrou <antoine@python.org>.
    Co-authored-by: Petr Viktorin <encukou@gmail.com>
    
    (cherry picked from commit 056c082)
    https://bugs.python.org/issue40052
    encukou committed Jan 12, 2021

Commits on Jan 10, 2021

  1. bpo-33065: Fix problem debugging user classes with __repr__ method (G…

    …H-24183)
    
    If __repr__ uses instance attributes, as normal, and one steps
    through the __init__ method, debugger may try to get repr before
    the instance attributes exist.  reprlib.repr handles the error.
    (cherry picked from commit 81f87bb)
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    miss-islington and terryjreedy committed Jan 10, 2021

Commits on Jan 7, 2021

  1. bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__…

    ….parent (GH-24100) (GH-24144)
    
    Automerge-Triggered-By: GH:brettcannon
    (cherry picked from commit ff8458b)
    
    Co-authored-by: Yair Frid <fridyair@gmail.com>
    miss-islington and Fongeme committed Jan 7, 2021

Commits on Jan 6, 2021

  1. bpo-42584: Update Windows installer to use SQLite 3.34.0 (GH-23675)

    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    zooba and erlend-aasland committed Jan 6, 2021
  2. bpo-42755: Fix sqlite3.Connection.backup docs (GH-23965)

    The `pages` argument default value now reflects the implementation.
    (cherry picked from commit abba83b)
    
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    miss-islington and erlend-aasland committed Jan 6, 2021
  3. bpo-38413: Remove outdated section about multithreading in sqlite3 (G…

    …H-23159)
    
    (cherry picked from commit f9949f8)
    
    Co-authored-by: Vladimir <greatvovan@gmail.com>
    miss-islington and greatvovan committed Jan 6, 2021
  4. bpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125

    )
    zooba committed Jan 6, 2021

Commits on Jan 5, 2021

  1. [3.8] bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674)…

    …. (GH-24129)
    
    (cherry picked from commit c94ee13)
    
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    
    Automerge-Triggered-By: GH:ned-deily
    erlend-aasland committed Jan 5, 2021
  2. [3.8] [3.9] bpo-42681: Fix test_curses failures related to color pairs (

    GH-24089) (GH-24113) (GH-24116)
    
    On ncurses 6.1 pair numbers are limited by SHORT_MAX-1.
    
    Improve error reporting and tests for color functions.
    (cherry picked from commit 59f9b4e)
    (cherry picked from commit 9b3a53a)
    serhiy-storchaka committed Jan 5, 2021
  3. [3.8] bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491

    )
    
    Make menu items work with formatter, add docstrings, add 100% tests.
    
    Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    (cherry picked from commit e40e2a2)
    terryjreedy committed Jan 5, 2021
  4. Fix broken NEWS markup (GH-24110)

    (cherry picked from commit cde988e)
    
    Co-authored-by: Brandt Bucher <brandtbucher@gmail.com>
    miss-islington and brandtbucher committed Jan 5, 2021
  5. bpo-42508: Keep IDLE running on macOS (GH-23577) (#23670)

    Remove obsolete workaround that prevented running files with
    shortcuts when using new universal2 installers built on macOS 11.
    Ignore buggy 2nd run_module_event call.
    (cherry picked from commit 57e5113)
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    miss-islington and terryjreedy committed Jan 5, 2021

Commits on Jan 4, 2021

  1. bpo-40810: Fix CheckTraceCallbackContent for SQLite pre 3.7.15 (GH-20530

    )
    
    Ref. [SQLite 3.7.15 changelog](https://sqlite.org/changes.htmlGH-version_3_7_15):
    _"Avoid invoking the sqlite3_trace() callback multiple times when a statement is automatically reprepared due to SQLITE_SCHEMA errors."_
    (cherry picked from commit f7f0ed5)
    
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    miss-islington and erlend-aasland committed Jan 4, 2021
  2. Do not remove x bit from published directories (GH-24101)

    (cherry picked from commit af4cd16)
    
    Co-authored-by: Steve Dower <steve.dower@python.org>
    miss-islington and zooba committed Jan 4, 2021
  3. Revert "[3.8] [doc] Fix erroneous backslashes in signatures and names (

    …GH-23658)" (GH-24093)
    
    This partially reverts commit
    02349e2, which was removing
    backslashes in documentations compiled with Sphinx < 3, used for
    Python 3.8 and 3.9 docs.
    JulienPalard committed Jan 4, 2021
  4. bpo-41837: Update macOS installer build to use OpenSSL 1.1.1i. (GH-24080

    ) (#24084)
    
    (cherry picked from commit 14097a2)
    
    Co-authored-by: Ned Deily <nad@python.org>
    miss-islington and ned-deily committed Jan 4, 2021
  5. Update Sphinx version for macOS installer build. (GH-24082) (GH-24088)

    (cherry picked from commit 0f3b96b)
    
    Co-authored-by: Ned Deily <nad@python.org>
    miss-islington and ned-deily committed Jan 4, 2021
Older