Skip to content
Permalink
master

Commits on Jan 12, 2021

  1. bpo-37324: Remove ABC aliases from collections (GH-23754)

    Remove deprecated aliases to Abstract Base Classes from the
    collections module.
    hugovk committed Jan 12, 2021
  2. bpo-42848: remove recursion from TracebackException (GH-24158)

    iritkatriel committed Jan 12, 2021
  3. bpo-42874: Remove grep -qE options for Solaris 10 compatibility (GH-2โ€ฆ

    โ€ฆ4200)
    
    According to [bpo-42874](), some versions of grep do not support the `-q` and `-E` options. Although both options are used elsewhere in the configure script, this particular bit of validation can be achieved without them,
    so there's no real harm in using a grep call with no flags.
    
    Would be good to get some people taking advantage of the `--with-tzpath` arguments in the wild to try this out.. Local testing seems to indicate that this does the same thing, but I don't know that we have any buildbots using this option. Maybe @pablogsal?
    
    [bpo-42874]():
    pganssle committed Jan 12, 2021
  4. bpo-42882: Add test_embed.test_unicode_id_init() (GH-24198)

    Test that _PyUnicode_FromId() works when Python is initialized
    multiples times.
    vstinner committed Jan 12, 2021
  5. bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (โ€ฆ

    โ€ฆGH-24193)
    
    Fix the _PyUnicode_FromId() function (_Py_IDENTIFIER(var) API) when
    Py_Initialize() / Py_Finalize() is called multiple times:
    preserve _PyRuntime.unicode_ids.next_index value.
    
    Use _PyRuntimeState_INIT macro instead memset(0) to reset
    _PyRuntimeState members to zero.
    vstinner committed Jan 12, 2021
  6. bpo-42870: Document change in argparse help output. (GH-24190)

    hrnciar committed Jan 12, 2021

Commits on Jan 11, 2021

  1. Fix various ParamSpec errors in typing (GH-24176)

    1. ParamSpec -> TypeVar for ``typing.Concatenate``
    2. ParamSpec's call signature should align with its documentation.
    Noticed in GH-24169
    Fidget-Spinner committed Jan 11, 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.
    terryjreedy committed Jan 10, 2021

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
  7. bpo-40823: Use loadTestsFromTestCase() iso. makeSuite() in sqlite3 teโ€ฆ

    โ€ฆsts (GH-20538)
    erlend-aasland committed Jan 7, 2021

Commits on Jan 6, 2021

  1. bpo-41798: Allocate _socket module C API on the heap (GH-24126)

    erlend-aasland committed Jan 6, 2021
  2. bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__โ€ฆ

    โ€ฆ.parent (GH-24100)
    
    Automerge-Triggered-By: GH:brettcannon
    Fongeme committed Jan 6, 2021
  3. 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
  4. bpo-14014: Clarify StreamWriter.reset() documentation (GH-13716)

    berkerpeksag committed Jan 6, 2021
  5. bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008)

    erlend-aasland committed Jan 6, 2021
    2
  6. bpo-40810: Require SQLite 3.7.15 (GH-24106)

    erlend-aasland committed Jan 6, 2021

Commits on Jan 5, 2021

  1. bpo-40956: Convert _sqlite3.Cursor to Argument Clinic (GH-24007)

    erlend-aasland committed Jan 5, 2021
  2. bpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125

    )
    zooba committed Jan 5, 2021
  3. 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
Older
You canโ€™t perform that action at this time.