Skip to content
Permalink
master

Commits on Jan 9, 2021

Commits on Jan 8, 2021

  1. bpo-42802: Remove distutils bdist_wininst command (GH-24043)

    The distutils bdist_wininst command deprecated in Python 3.8 has been
    removed. The distutils bidst_wheel command is now recommended to
    distribute binary packages on Windows.
    
    * Remove Lib/distutils/command/bdist_wininst.py
    * Remove PC/bdist_wininst/ project
    * Remove Lib/distutils/command/wininst-*.exe programs
    * Remove all references to bdist_wininst
    vstinner committed Jan 8, 2021
  2. Fix a typo in docs for typing.Concatenate (#24169)

    Return param spec should be R, not T
    jdahlin committed Jan 8, 2021
  3. bpo-42866: Add traverse func to _multibytecodec.MultibyteCodec (GH-24166

    )
    
    Convert _multibytecodec.MultibyteCodec type to a GC type and adds a
    traverse function.
    vstinner committed Jan 8, 2021
  4. bpo-42866: Fix refleak in CJK getcodec() (GH-24165)

    Fix a reference leak in the getcodec() function of CJK codecs.
    vstinner committed Jan 8, 2021

Commits on Jan 7, 2021

  1. bpo-42846: Convert CJK codec extensions to multiphase init (GH-24157)

    Convert the 6 CJK codec extension modules (_codecs_cn, _codecs_hk,
    _codecs_iso2022, _codecs_jp, _codecs_kr and _codecs_tw) to the
    multiphase initialization API (PEP 489).
    
    Remove getmultibytecodec() local cache: always import
    _multibytecodec. It should be uncommon to get a codec. For example,
    this function is only called once per CJK codec module.
    
    Fix a reference leak in register_maps() error path.
    vstinner committed Jan 7, 2021
  2. bpo-42860: Remove type error from grammar (GH-24156)

    This is only there so that alternative implementations written in statically-typed languages can use this grammar without
    having type errors in the way.
    
    Automerge-Triggered-By: GH:lysnikolaou
    lysnikolaou committed Jan 7, 2021
  3. bpo-42851: [Enum] remove brittle __init_subclass__ support (GH-24154)

    Solution to support calls to `__init_subclass__` with members defined is too brittle and breaks with certain mixins.
    ethanfurman committed Jan 7, 2021
  4. Update frame.f_lineno before any call to the (C) tracing function. (G…

    …H-24150)
    
    * Minimizes breakage of C extensions and ensures PyFrame_GetLineNumber is efficient.
    markshannon committed Jan 7, 2021
  5. bpo-42783: Documentation for asyncio.sleep(0) (#24002)

    Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
    simonw and Fidget-Spinner committed Jan 7, 2021
  6. bpo-42847: Normalise Lib/sqlite3/test/* file encodings (GH-24147)

    Convert from ISO-8859-1 to UTF-8.
    erlend-aasland committed Jan 7, 2021

Commits on Jan 6, 2021

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

    ….parent (GH-24100)
    
    Automerge-Triggered-By: GH:brettcannon
    Fongeme committed Jan 6, 2021
  2. bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-2…

    …3602)
    
    I think that none of these API calls can fail, but only few of them are
    documented as such. Add the sentence "This function always succeeds" (which is
    the same already used e.g. by PyNumber_Check) to all of them.
    antocuni committed Jan 6, 2021
  3. 2
  4. bpo-40810: Require SQLite 3.7.15 (GH-24106)

    erlend-aasland committed Jan 6, 2021

Commits on Jan 5, 2021

  1. bpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125

    )
    zooba committed Jan 5, 2021
  2. bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)

    * Add test for frame.f_lineno with/without tracing.
    
    * Make sure that frame.f_lineno is correct regardless of whether frame.f_trace is set.
    
    * Update importlib
    
    * Add NEWS
    markshannon committed Jan 5, 2021
  3. bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491)

    Make menu items work with formatter, add docstrings, add 100% tests.
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    csabella and terryjreedy committed Jan 5, 2021
  4. bpo-42681: Fix test_curses failures related to color pairs (GH-24089)

    On ncurses 6.1 pair numbers are limited by SHORT_MAX-1, even
    with extended color support.
    
    Improve error reporting and tests for color functions.
    serhiy-storchaka committed Jan 5, 2021
  5. Fix broken NEWS markup (GH-24110)

    brandtbucher 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.html#version_3_7_15):
    _"Avoid invoking the sqlite3_trace() callback multiple times when a statement is automatically reprepared due to SQLITE_SCHEMA errors."_
    erlend-aasland committed Jan 4, 2021
  2. bpo-1635741: Convert _multibytecodec to multi-phase init (GH-24095)

    Convert the _multibytecodec extension module (CJK codecs) to multi-phase
    initialization (PEP 489).
    erlend-aasland committed Jan 4, 2021
  3. Post 3.10.0a4

    pablogsal committed Jan 4, 2021
  4. Merge tag 'v3.10.0a4'

    Python 3.10.0a4
    pablogsal committed Jan 4, 2021
  5. Do not remove x bit from published directories (GH-24101)

    zooba committed Jan 4, 2021
Older
You can’t perform that action at this time.