cpython
cpython copied to clipboard
The Python programming language
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...
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...
Alternative to #98719, but exporting `sys.build_prefix`. * Issue: gh-98718
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...
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...
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:...
gh-98930: changed the documentation of signalmodule for making it understadable when it returns none, when it raises ValueError
# 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...
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__`,...