Skip to content
Permalink
main

Commits on Jan 6, 2022

  1. bpo-46263: Fix second location that needs MALLOC_CONF on FreeBSD (GH-…

    …30440)
    
    Automerge-Triggered-By: GH:tiran
    tiran committed Jan 6, 2022
  2. bpo-46286: use the new POP_JUMP_IF_NOT_NONE opcode to simplify except* (

    GH-30439)
    
    Automerge-Triggered-By: GH:iritkatriel
    iritkatriel committed Jan 6, 2022
  3. bpo-46263: Do not ever expect "use_frozen_modules" to be -1. (gh-30438)

    The condition is no longer valid.  This should resolve the buildbot failure on FreeBSD.
    
    https://bugs.python.org/issue46263
    ericsnowcurrently committed Jan 6, 2022
  4. bpo-46263: FreeBSD 14.0 jemalloc workaround for junk bytes of freed m…

    …emory (GH-30434)
    
    Automerge-Triggered-By: GH:tiran
    tiran committed Jan 6, 2022
  5. bpo-46278: fix typo introduced in GH-30427 (GH-30430)

    Automerge-Triggered-By: GH:asvetlov
    kumaraditya303 committed Jan 6, 2022
  6. bpo-45923: Handle call events in bytecode (GH-30364)

    * Add a RESUME instruction to handle "call" events.
    markshannon committed Jan 6, 2022
  7. bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085

    )" (GH-30422)
    
    This reverts commit ea25180.
    
    Keep "assert(interned == NULL);" in _PyUnicode_Fini(), but only for
    the main interpreter.
    
    Keep _PyUnicode_ClearInterned() changes avoiding the creation of a
    temporary Python list object.
    vstinner committed Jan 6, 2022

Commits on Jan 5, 2022

  1. bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)

    Automerge-Triggered-By: GH:pablogsal
    methane committed Jan 5, 2022
  2. bpo-43137: Revert "webbrowser: Don't run gvfs-open on GNOME" (GH-30417)

    gvfs-open was deprecated in 2015 and removed in 2018, but its replacement,
    gio(1), is not available in Ubuntu 16.04, which is apparently still
    supported by CPython upstream even though it is considered to be EOL by
    Ubuntu developers.
    
    Signed-off-by: Simon McVittie <smcv@debian.org>
    smcv committed Jan 5, 2022
  3. bpo-46262: [Enum] test error path in Flag._missing_ (GH-30408)

    add tests that exercise the `_missing_` error path for `Flag` and `IntFlag`
    
    Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
    Co-authored-by: Ethan Furman <ethan@stoneleaf.us>
    3 people committed Jan 5, 2022

Commits on Jan 4, 2022

  1. bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (

    GH-30168)
    
    * bpo-20369: concurrent.futures.wait() now deduplicates futures given as arg.
    
    * 📜🤖 Added by blurb_it.
    
    Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
    kumaraditya303 and blurb-it committed Jan 4, 2022
  2. bpo-33252: Document that ResourceWarning is ignored by default (GH-30358

    )
    
    `ResourceWarning` is ignored by default.
    
    Document this behaviour, for consistency with others in this table such as `DeprecationWarning`.
    
    Documentation PR can skip NEWS file.
    
    Automerge-Triggered-By: GH:iritkatriel
    hugovk committed Jan 4, 2022
  3. bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)

    * bpo-46202: remove opcode POP_EXCEPT_AND_RERAISE
    
    * do not assume that an exception group is truthy
    iritkatriel committed Jan 4, 2022
  4. Update old-style strings to f-strings (GH-30384)

    Let me know if this sort of change is unwanted...
    davidgilbertson committed Jan 4, 2022
  5. bpo-46233: Minor speedup for bigint squaring (GH-30345)

    x_mul()'s squaring code can do some redundant and/or useless
    work at the end of each digit pass. A more careful analysis
    of worst-case carries at various digit positions allows
    making that code leaner.
    tim-one committed Jan 4, 2022

Commits on Jan 3, 2022

  1. bpo-44092: Remove unused member reset from sqlite3.Cursor (GH-30377)

    Automerge-Triggered-By: GH:pablogsal
    erlend-aasland committed Jan 3, 2022
  2. bpo-34538: Remove Exception subclassing from tutorial (GH-30361)

    Remove the bit about subclassing exceptions.
    
    Documentation PR can skip the NEWS label.
    
    Automerge-Triggered-By: GH:iritkatriel
    hugovk committed Jan 3, 2022
Older