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 | [42297](https://bugs.python.org/issue42297) --- | :--- Nosy | @rhettinger, @TurboTurtle, @bobblanchett *Note: these values reflect the state of the issue at the time it was migrated and might not reflect...

type-bug
stdlib
3.8 (EOL)
3.7 (EOL)

Fix a crash caused by immortal interned strings being shared between sub-interpreters that use basic single-phase init. In that case, the string can be used by an interpreter that outlives...

awaiting review

Fix a crash caused by immortal interned strings being shared between sub-interpreters that use basic single-phase init. In that case, the string can be used by an interpreter that outlives...

awaiting review
DO-NOT-MERGE

The usage parameter of argparse.ArgumentParser no longer affects the default value of the prog parameter in subparsers. Previously the full custom usage of the main parser was used as the...

awaiting core review
needs backport to 3.12
needs backport to 3.13

As we scale up our use of `except*` and `ExceptionGroups`, we've noticed that `isinstance()` checks get noticeably more clumsy: ```python # often the isinstance is implicit due to an except-statement...

type-feature
interpreter-core

This is the simplest implementation I could think of. Another alternative I had in mind was to specialize the code for leaf exceptions but this would need to move around...

awaiting review

# Bug report ### Bug description: Python's new REPL seems to eat exit codes and instead return 1: ``` ¶ python Python 3.13.0 (main, Oct 19 2024, 04:14:02) [GCC 12.2.0]...

type-bug
3.13
3.14
topic-repl

The internals documentation is scattered in markdown files in the codebase, as well as parts which are in the dev guide. We would like to have it in one place,...

docs

It would be useful to be able to detect: 1) the platform as 32-bit vs 64-bit vs ARM64. 2) the windows api partition - multiple partitions can be true at...

type-feature
OS-windows