Skip to content
Permalink
main
Switch branches/tags

Commits on Jun 12, 2022

  1. gh-91162: Support splitting of unpacked arbitrary-length tuple over T…

    …ypeVar and TypeVarTuple parameters (alt) (GH-93412)
    
    For example:
    
      A[T, *Ts][*tuple[int, ...]] -> A[int, *tuple[int, ...]]
      A[*Ts, T][*tuple[int, ...]] -> A[*tuple[int, ...], int]
    serhiy-storchaka committed Jun 12, 2022

Commits on Jun 10, 2022

  1. gh-91317: Document that Path does not collapse initial // (GH-32193)

    Documentation for `pathlib` says:
    
    > Spurious slashes and single dots are collapsed, but double dots ('..') are not, since this would change the meaning of a path in the face of symbolic links:
    
    However, it omits that initial double slashes also aren't collapsed.
    
    Later, in documentation of `PurePath.drive`, `PurePath.root`, and `PurePath.name` it mentions UNC but:
    
    - this abbreviation says nothing to a person who is unaware about existence of UNC (Wikipedia doesn't help either by [giving a disambiguation page](https://en.wikipedia.org/wiki/UNC))
    - it shows up only if a person needs to use a specific property or decides to fully learn what the module provides.
    
    For context, see the BPO entry.
    arhadthedev committed Jun 10, 2022
  2. GH-93621: reorder code in with/async-with exception exit path to redu…

    …ce the size of the exception table (GH-93622)
    iritkatriel committed Jun 10, 2022
  3. gh-93671: Avoid exponential backtracking in deeply nested sequence pa…

    …tterns in match statements (GH-93680)
    
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    pablogsal and ambv committed Jun 10, 2022
  4. gh-93466: Document PyType_Spec doesn't accept repeated slot IDs; rais…

    …e where this was problematic (GH-93471)
    encukou committed Jun 10, 2022
  5. gh-93491: Add support tier detection to configure (GH-93492)

    Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    Co-authored-by: Steve Dower <steve.dower@microsoft.com>
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
    4 people committed Jun 10, 2022
  6. gh-90763: Modernise xx template module initialisation (#93078)

    Use C APIs such as PyModule_AddType instead of PyModule_AddObject.
    Also remove incorrect module decrefs if module fails to initialise.
    erlend-aasland committed Jun 10, 2022

Commits on Jun 9, 2022

  1. gh-90549: Fix leak of global named resources using multiprocessing sp…

    …awn (#30617)
    
    Co-authored-by: XD Trol <milestonejxd@gmail.com>
    Co-authored-by: Antoine Pitrou <pitrou@free.fr>
    3 people committed Jun 9, 2022
  2. bpo-45383: Get metaclass from bases in PyType_From* (GH-28748)

    This checks the bases of of a type created using the FromSpec
    API to inherit the bases metaclasses.  The metaclass's alloc
    function will be called as is done in `tp_new` for classes
    created in Python.
    
    Co-authored-by: Petr Viktorin <encukou@gmail.com>
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
    3 people committed Jun 9, 2022
  3. gh-90494: Reject 6th element of the __reduce__() tuple (GH-93609)

    copy.copy() and copy.deepcopy() now always raise a TypeError if
    __reduce__() returns a tuple with length 6 instead of silently ignore
    the 6th item or produce incorrect result.
    serhiy-storchaka committed Jun 9, 2022

Commits on Jun 8, 2022

  1. gh-79096: Fix/improve http cookiejar tests (GH-93614)

    Fixup of GH-93463:
    - remove stray print
    - use proper way to check file mode
    - add working chmod decorator
    
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    tiran and ambv committed Jun 8, 2022
  2. gh-93575: Use correct way to calculate PyUnicode struct sizes (GH-93602)

    * gh-93575: Use correct way to calculate PyUnicode struct sizes
    
    * Add comment to keep test_sys and test_unicode in sync
    
    * Fix case code < 256
    tiran committed Jun 8, 2022
  3. gh-87961: Remove outdated notes from functions that aren't in the Lim…

    …ited API (GH-93581)
    
    * Remove outdated notes from functions that aren't in the Limited API
    
    Nowadays everything that *is* in the Limited API has a note added
    automatically.
    These notes could mislead people to think that these functions
    could never be added to the limited API. Remove them.
    
    * Also remove forgotten note on tp_vectorcall_offset not being finalized
    encukou committed Jun 8, 2022
  4. gh-93584: Make all install+tests targets depends on all (GH-93589)

    All install targets use the "all" target as synchronization point to
    prevent race conditions with PGO builds. PGO builds use recursive make,
    which can lead to two parallel `./python setup.py build` processes that
    step on each others toes.
    
    "test" targets now correctly compile PGO build in a clean repo.
    tiran committed Jun 8, 2022
Older