cpython
cpython copied to clipboard
The Python programming language
BPO | [29847](https://bugs.python.org/issue29847) --- | :--- Nosy | @brettcannon, @pitrou, @serhiy-storchaka, @jstasiak, @JelleZijlstra, @DimitrisJim, @remilapeyre, @uriyyo PRs | python/cpython#13399python/cpython#19632 *Note: these values reflect the state of the issue at the...
Rationale in #87474. Didn't PR until now because there were no further comments on that issue, and the immediate problem I was seeing was resolved. * Issue: gh-87474
BPO | [32884](https://bugs.python.org/issue32884) --- | :--- Nosy | @stevendaprano, @bitdancer, @jab, @MatanyaStroh, @stevoisiak, @remilapeyre, @websurfer5, @akulakov *Note: these values reflect the state of the issue at the time it was...
This adds a GHA job that reliably determines if all the required dependencies have succeeded or not. It also allows to reduce the list of required branch protection CI statuses...
The `.strftime()` methods return a Unicode string as of Python 3.0. --- For reference, under the hood, the `.strftime()` methods use `time.strftime()`, whose return value is defined [here](https://github.com/python/cpython/blob/5893b5db98b38b17750c0572c7209774a5034898/Modules/timemodule.c#L881-L897) for the...
This defines an event loop method eager_task_factory() that can be made the task factory using loop.set_task_factory(loop.eager_task_factory). It will then return a Future if the coroutine completed (or failed) without ever...
The members of [PyMemberDef](https://docs.python.org/3/c-api/structures.html#c.PyMemberDef) aren't marked up as members, so they can't be linked to individually.
# Bug report Below is a program repoducing the issue. Two Python processes **P** (as Parent) and **CH** (as child) are exchanging `SIGUSR1` signals. One process waits for a signal,...
* Issue: gh-99103