Skip to content
Permalink
main

Commits on Mar 7, 2022

  1. bpo-44549: Update bzip2 to 1.0.8 in Windows builds to mitigate CVE-20…

    …16-3189 and CVE-2019-12900 (GH-31731)
    zooba committed Mar 7, 2022
  2. Post 3.11.0a6

    pablogsal committed Mar 7, 2022
  3. bpo-41370: Evaluate strings as forward refs in PEP 585 generics (GH-3…

    …0900)
    
    This removes discrepancy between list["int"] and List["int"].
    
    Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
    Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
    3 people committed Mar 7, 2022
  4. bpo-46948: Fix CVE-2022-26488 by ensuring the Windows Installer corre…

    …ctly uses the install path during repair (GH-31726)
    zooba committed Mar 7, 2022
  5. bpo-46933: Make pwd module optional (GH-31700)

    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    tiran and erlend-aasland committed Mar 7, 2022
  6. Python 3.11.0a6

    pablogsal committed Mar 7, 2022
  7. bpo-46940: Don't override existing AttributeError suggestion informat…

    …ion (GH-31710)
    
    When an exception is created in a nested call to PyObject_GetAttr, any
    external calls will override the context information of the
    AttributeError that we have already placed in the most internal call.
    This will cause the suggestions we create to nor work properly as the
    attribute name and object that we will be using are the incorrect ones.
    
    To avoid this, we need to check first if these attributes are already
    set and bail out if that's the case.
    pablogsal committed Mar 7, 2022
  8. bpo-43292: Fix file leak in ET.iterparse() when not exhausted (GH-3…

    …1696)
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    jacobtylerwalls and serhiy-storchaka committed Mar 7, 2022
  9. Use assertEqual, not assertEquals, in test_unicode (GH-31718)

    Fixes a DeprecationWarning
    sweeneyde committed Mar 7, 2022
  10. Clean up CODEOWNERS (#31715)

    crypto-team apparently doesn't exist and skrah no longer has write access. Thanks @isidentical for noticing this.
    JelleZijlstra committed Mar 7, 2022

Commits on Mar 6, 2022

  1. bpo-14156: Make argparse.FileType work correctly for binary file mode…

    …s when argument is '-' (GH-13165)
    
    Also made modes containing 'a' or 'x' act the same as a mode containing 'w' when argument is '-'
    (so 'a'/'x' return sys.stdout like 'w', and 'ab'/'xb' return sys.stdout.buffer like 'wb').
    MojoVampire committed Mar 6, 2022
  2. bpo-46921: Vectorcall support for super() (GH-31687)

    Co-Authored-By: Dong-hee Na <donghee.na@python.org>
    Fidget-Spinner and corona10 committed Mar 6, 2022
Older