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

currently asyncio.iscoroutinefunction and inspect.iscoroutinefunction behave differently in [confusing and hard to document ways](https://github.com/python/cpython/issues/67707). It's possible to bring them into alignment but I think it would be better to make `asyncio.iscoroutinefunction`...

type-feature

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

In accordance with `sqlite3.enable_callback_tracebacks` documentation, "*By default you will not get any tracebacks in user-defined functions, aggregates, converters, authorizer callbacks etc.*" While it is possible to retrieve debugging information via...

type-feature
expert-sqlite3

# Bug report Running x86 and AMD64 builds of Python 3.11.0 (official binary releases) in emulation on Windows 11 on an ARM64 machine gives me ``` Python 3.11.0 (main, Oct...

type-bug
OS-windows

BPO | [31548](https://bugs.python.org/issue31548) --- | :--- Nosy | @pfmoore, @tjguk, @zware, @serhiy-storchaka, @zooba Files | [test_os.log](https://bugs.python.org/file47163/test_os.log "Uploaded as text/x-log at 2017-09-21.21:37:05 by @serhiy-storchaka") *Note: these values reflect the state of...

type-bug
tests
OS-windows
3.7
3.12

BPO | [27499](https://bugs.python.org/issue27499) --- | :--- Nosy | @vstinner, @dholth, @serhiy-storchaka *Note: these values reflect the state of the issue at the time it was migrated and might not reflect...

extension-modules

@python/windows-team I noticed the VS project file `_wmi.cxproj` for `_wmimodule.cpp` added for 3.12 to support using WMI on Windows to get `platform` data in issue #89545 / PR #96289 specifies...

OS-windows
build

# Bug report The macro `Py_CLEAR(op)` references the argument `op` two times. If the macro is called with an expression it will be evaluated two times, for example `Py_CLEAR(p++)`. #...

type-bug
interpreter-core

Simplifies `RETURN_VALUE`, `RETURN_GENERATOR` and `YIELD_VALUE` as they no longer need to check if the current frame is the entry frame. Should allow specialization of `FOR_ITER` and `SEND` for generators and...

awaiting merge

Inserting shim frames simplifies `RETURN_VALUE`, `YIELD_VALUE` and `RETURN_GENERATOR` and enables `for` to be specialized for generators, and `await` to be specialized for coroutines. See https://github.com/faster-cpython/ideas/issues/436 for full discussion * PR:...

performance