cpython
cpython copied to clipboard
The Python programming language
`relpath()` unconditionally calls `abspath()` to make both its arguments absolute before comparing them. This is necessary if the supplied arguments have different anchors, but it is *not* necessary when the...
Several platforms don't define the static_assert macro despite having compiler support for the _Static_assert keyword. The macro needs to be defined since it is used unconditionally in the Python code....
# Documentation The documentation for the ``struct`` module isn't explicit about what's expected of the various examples. Working through that in a PR... * PR: gh-99141
# Feature or enhancement We propose to replace the non-OpenSSL cryptographic primitives in hashlib with high-assurance, verified versions from the HACL* project. # Pitch As evidenced by the recent SHA3...
BPO | [39539](https://bugs.python.org/issue39539) --- | :--- Nosy | @gpshead, @tiran, @Mariatta, @gvanas *Note: these values reflect the state of the issue at the time it was migrated and might not...
`PyConfig` is for configuring the runtime during initialization, not for storing runtime state. Currently in `sys.set_int_max_str_digits()` we are modifying the interpreter's PyConfig directly. That field should never be modified outside...
# Bug report Python 3.11 fails to build on macOS 10.10 because `static_assert` is not defined by the libc headers, even when using a C11 compiler. A workaround like the...
Co-authored-by: Erlend E. Aasland * Issue: gh-91375