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

* Issue: gh-99380

awaiting review
skip news
DO-NOT-MERGE
needs backport to 3.10
needs backport to 3.11

The following code: ```python from typing import * T = TypeVar('T') T2 = TypeVar('T2') Ts = TypeVarTuple('Ts') class A(Generic[T, T2, *Ts]): x: List[T] y: List[T2] z: Tuple[*Ts] A[int] ``` is...

type-bug
3.11
expert-typing
3.12

This enables using new features in Sphinx 5, including better index entry searching, object descriptions in the table of contents, and support for newer versions of Docutils. I suggest bumping...

docs
3.11
3.10
3.12

The following code: ```python from typing import * P = ParamSpec('P') Ts = TypeVarTuple('Ts') C = Callable[P, Tuple[*Ts]] C[[int], str, bytes] ``` gives an error: ``` Traceback (most recent call...

type-bug
3.11
expert-typing
3.12

These APIs were added in Windows 8, so we can safely backport.

performance
skip issue
awaiting core review
skip news
DO-NOT-MERGE
needs backport to 3.10
needs backport to 3.11

# Bug report The following code gives me an error: ```python from typing import Generic, TypeVarTuple, ParamSpec Ts = TypeVarTuple("Ts") P = ParamSpec("P") class Foo(Generic[*Ts, P]): pass Foo[int, str, [bytes]]...

type-bug
stdlib
3.11
expert-typing
3.12

BPO | [38583](https://bugs.python.org/issue38583) --- | :--- Nosy | @pfmoore, @tjguk, @zware, @zooba, @mikofski *Note: these values reflect the state of the issue at the time it was migrated and might...

type-bug
OS-windows
3.9

docs
skip issue
awaiting review
skip news
needs backport to 3.11

We already have events for interpreter creation and free, but not threads. * PR: gh-99378

3.11
3.10
3.12

BPO | [43438](https://bugs.python.org/issue43438) --- | :--- Nosy | @vstinner, @tiran, @zooba, @zkonge, @gousaiyang, @frankli0324 *Note: these values reflect the state of the issue at the time it was migrated and...

docs
3.10