cpython
cpython copied to clipboard
The Python programming language
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`...
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...
# 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...
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...
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...
@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...
# 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++)`. #...
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...
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:...