8000 Comparing v3.10.15...v3.10.16 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: python/cpython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.10.15
Choose a base ref
...
head repository: python/cpython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.10.16
Choose a head ref
  • 14 commits
  • 27 files changed
  • 9 contributors

Commits on Sep 7, 2024

  1. Post 3.10.15

    pablogsal committed Sep 7, 2024
    Configuration menu
    Copy the full SHA
    0c5fc27 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. [3.10] gh-89452: GHA: Set --with-dbmliborder to avoid issues with hom…

    …ebrew's gdbm 1.24 (#125112)
    
    Per #89452 (comment),
    the issue is fixed in configure for 3.11+, and
    
    > For older Python versions, the workaround is to build with:
    >
    >     ./configure --with-dbmliborder=gdbm:ndbm
    
    We need this workaround in GitHub Actions, otherwise the tests fail.
    encukou authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    850189a View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. [3.10] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-1…

    …09423) (#125106)
    
    [3.11] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423) (GH-109427)
    
    gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423)
    
    Use a longer key: FIPS mode requires at least of at least 112 bits.
    The previous key was only 32 bits.
    (cherry picked from commit e091b9f)
    
    (cherry picked from commit f7bfac4)
    
    Co-authored-by: Victor Stinner <vstinner@python.org>
    Co-authored-by: Petr Viktorin <encukou@gmail.com>
    3 people authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    e44b32f View commit details
    Browse the repository at this point in the history
  2. [3.10] gh-100005: Skip test_script_as_dev_fd() on FreeBSD (GH-100006) (

    …#125109)
    
    gh-100005: Skip test_script_as_dev_fd() on FreeBSD (GH-100006)
    
    On FreeBSD, skip test_script_as_dev_fd() of test_cmd_line_script if
    fdescfs is not mounted (at /dev/fd).
    (cherry picked from commit 038b151)
    
    Co-authored-by: Victor Stinner <vstinner@python.org>
    Co-authored-by: Petr Viktorin <encukou@gmail.com>
    3 people authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    b116237 View commit details
    Browse the repository at this point in the history
  3. [3.10] gh-107902: gh-108948: Don't test setting suid/sgid/sticky on s…

    …ystems that don't support them (GH-108368) (GH-109697) (#125255)
    
    * gh-107902: Don't test setting suid/sgid on systems that don't support them (GH-108368)
    
    * gh-108948: Skip test_tarfile.test_modes() on EFTYPE error (#109697)
    
    On FreeBSD, regular users cannot set the sticky bit. Skip the test if
    chmod() fails with EFTYPE error.
    
    ---------
    
    Co-authored-by: Victor Stinner <vstinner@python.org>
    encukou and vstinner authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    6bbaab8 View commit details
    Browse the repository at this point in the history
  4. [3.10] gh-125041: gh-90781: test_zlib: For s390x HW acceleration, ski…

    …p checking the compressed bytes (GH-125042) (#125585)
    
    gh-125041: gh-90781: test_zlib: For s390x HW acceleration, skip checking the compressed bytes (GH-125042)
    
    This backports two commits:
    
    - GH-31096 skipped the tests unconditionally
    - GH-125042 skips only the possibly-failing assertion
    
    (cherry picked from commit cc5a225)
    encukou authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    3c63d80 View commit details
    Browse the repository at this point in the history
  5. [3.10] gh-125529: Avoid f-strings in the metagrammar (#125582)

    Grammar actions need to be valid Python tokens and the accepted tokens need to be
    listed in the actions mini-grammar).
    
    In Python 3.12+ (PEP 701), f-strings are no longer STRING tokens, so pegen fails
    to regenerate the metaparser on this Python version, as in:
    
       PYTHON_FOR_REGEN=python3.12 make regen-pegen-metaparser
    
    Use `+` and plain strings rather than f-strings.
    
    Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
    encukou and lysnikolaou authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    6a2f12a View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. Configuration menu
    Copy the full SHA
    9286ab3 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Configuration menu
    Copy the full SHA
    5f24da9 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2024

  1. Configuration menu
    Copy the full SHA
    e43897c View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2024

  1. [3.10] gh-103848: Adds checks to ensure that bracketed hosts found by…

    … urlsplit are of IPv6 or IPvFuture format (#103849) (#126975)
    
    Co-authored-by: Gregory P. Smith <greg@krypto.org>
    (cherry picked from commit 29f348e)
    
    Co-authored-by: JohnJamesUtley <81572567+JohnJamesUtley@users.noreply.github.com>
    vstinner and JohnJamesUtley authored Dec 2, 2024
    Configuration menu
    Copy the full SHA
    634ded4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3a6042 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. [3.10] gh-122792: Make IPv4-mapped IPv6 address properties consistent…

    … with IPv4 (GH-122793) (GH-123819)
    
    Make IPv4-mapped IPv6 address properties consistent with IPv4.
    (cherry picked from commit 76a1c5d)
    
    Co-authored-by: Seth Michael Larson <seth@python.org>
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    3 people authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    b58da40 View commit details
    Browse the repository at this point in the history
  2. Python 3.10.16

    pablogsal committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    8907786 View commit details
    Browse the repository at this point in the history
Loading
0