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: astral-sh/python-build-standalone
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 20260203
Choose a base ref
...
head repository: astral-sh/python-build-standalone
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 20260211
Choose a head ref
  • 4 commits
  • 10 files changed
  • 2 contributors

Commits on Feb 6, 2026

  1. Configuration menu
    Copy the full SHA
    a23a708 View commit details
    Browse the repository at this point in the history
  2. Build tail-calling Python 3.15 on Windows (#970)

    Build Python 3.15 with tail-calling enabled on Windows.
    Use Visual Studio 2026 and v145 platform toolset for this build.
    
    closes #933
    jjhelmus authored Feb 6, 2026
    Configuration menu
    Copy the full SHA
    ece6423 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2026

  1. Fix Queue.qsize() on Linux cross-compilation (#978)

    Fixes #977.
    
    `multiprocessing.Queue.qsize()` raises `NotImplementedError` on Linux
    cross-compiled builds because CPython's `configure`
    defaults to `ac_cv_broken_sem_getvalue=yes` when cross-compiling. See
    [configure.ac](https://github.com/python/cpython/blob/main/configure.ac#L6299-L6301).
    
    This affects all Linux cross-compiled builds. Fix by setting
    `ac_cv_broken_sem_getvalue=no` for Linux targets (macOS excluded as it
    genuinely has broken `sem_getvalue`).
    
    cc @jjhelmus @zanieb
    mmangkad authored Feb 10, 2026
    Configuration menu
    Copy the full SHA
    a003a67 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. CPython 3.15.0a5 -> 3.15.0a6 (#981)

    * Update CPython to 3.15.0a6
    * Remove unneeded patch added for 3.15.0a5
    * Enable tail call for free-threading build on Windows.
    jjhelmus authored Feb 12, 2026
    Configuration menu
    Copy the full SHA
    6b6905a View commit details
    Browse the repository at this point in the history
Loading