Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-100086: Add build details to sys.version #100087

Closed
wants to merge 3 commits into from
Closed

gh-100086: Add build details to sys.version #100087

wants to merge 3 commits into from

Commits on Dec 7, 2022

  1. gh-100086: Add build details to sys.version

    Add more build details about how Python was configured in
    sys.version, like "debug" or "release" build.
    
    Build details and related configure option:
    
    * "debug": --with-pydebug, "release" otherwise
    * "+assert": --with-assertions
    * "+tracerefs": --with-trace-refs
    * "+pystats": --enable-pystats
    * "asan": --with-address-sanitizer
    * "msan": --with-memory-sanitizer
    * "ubsan": --with-undefined-behavior-sanitizer
    * "lto+pgo": --with-lto --enable-optimizations
    * "framework": --enable-framework
    * "shared": --enable-shared
    vstinner committed Dec 7, 2022
    Configuration menu
    Copy the full SHA
    f9be944 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94b93ef View commit details
    Browse the repository at this point in the history
  3. Fix buildinfo buffer size

    vstinner committed Dec 7, 2022
    Configuration menu
    Copy the full SHA
    5fca7d3 View commit details
    Browse the repository at this point in the history