cpython icon indicating copy to clipboard operation
cpython copied to clipboard

The Python programming language

Results 1387 cpython issues
Sort by recently updated
recently updated
newest added

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...

type-bug
stdlib
3.10
3.9
3.8
3.7
expert-pathlib

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

awaiting change review
needs backport to 3.10
needs backport to 3.11

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...

type-feature
stdlib
3.9

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...

skip issue
awaiting review
skip news

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...

docs
awaiting core review
skip news
needs backport to 3.10
needs backport to 3.11

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...

awaiting core review

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.

docs

# 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,...

type-bug