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

If we wrap function with bound method, which is also a wrapper around function, `inspect.signature` will not do `skip_bound_arg`. It will use `inspect.unwrap` and pass by bound method from outer...

type-bug
awaiting merge
needs backport to 3.10
needs backport to 3.11

BPO | [29858](https://bugs.python.org/issue29858) --- | :--- Nosy | @1st1, @anton-ryzhov PRs | python/cpython#736 *Note: these values reflect the state of the issue at the time it was migrated and might...

type-bug
stdlib
3.11
3.10
3.12

Alternative to #98719, but exporting `sys.build_prefix`. * Issue: gh-98718

awaiting core review

BPO | [39734](https://bugs.python.org/issue39734) --- | :--- Nosy | @pitrou, @ZackerySpytz, @pierreglaser PRs | python/cpython#19237 *Note: these values reflect the state of the issue at the time it was migrated and...

type-feature
stdlib
3.12

Add COMPILEALL_OPTS variable in Makefile to override compileall options (default: -j0) in "make install". Merge also the 3 compileall commands into a single command building PYC files for the 3...

awaiting core review

Currently, compileall options (``-j0``) are hardcoded. In Fedora, we would like to add ``--hardlink-dupes`` option and also control the number of jobs (ex: replace ``-j0`` with ``-j6``). Fedora downstream issue:...

type-bug

gh-98930: changed the documentation of signalmodule for making it understadable when it returns none, when it raises ValueError

awaiting review

# Documentation The [documentation for signal.strsignal(...)](https://docs.python.org/3/library/signal.html#signal.strsignal) says `Returns None if the signal is not recognized.` This a misleading way to describe what actually happens. Suggested better wording would be `Throws...

docs

Closes gh-90533

type-feature
awaiting review
expert-IO

This is a meta issue tracking all the things that need to be cleaned up in the import system. From removing long deprecated APIs to migrating internal access to `__spec__`,...

expert-importlib