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

* Issue: gh-96005

tests
awaiting core review
skip news

BPO | [46902](https://bugs.python.org/issue46902) --- | :--- Nosy | @aroberge, @pablogsal, @Jean-Abou-Samra *Note: these values reflect the state of the issue at the time it was migrated and might not reflect...

type-feature
interpreter-core
3.11
pending

BPO | [28619](https://bugs.python.org/issue28619) --- | :--- Nosy | @EdSchouten Files | [patch-inet_ntoa.diff](https://bugs.python.org/file45364/patch-inet_ntoa.diff "Uploaded as text/plain at 2016-11-05.11:37:20 by @EdSchouten"): Patch for socketmodule to use inet_ntop() when available *Note: these values...

extension-modules
3.7
pending

BPO | [30548](https://bugs.python.org/issue30548) --- | :--- Nosy | @csabella, @mariocj89, @tirkarthi *Note: these values reflect the state of the issue at the time it was migrated and might not reflect...

type-feature
docs

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

type-feature
docs

- Limited API needs to be enabled per source file - Some builds don't support Limited API, so Limited API tests must be skipped on those builds (currently this is...

awaiting merge
skip news

- On WASI `ENOTCAPABLE` is now mapped to `PermissionError`. - The `errno` modules exposes the new error number. - `getpath.py` now ignores `PermissionError` when it cannot open landmark files `pybuilddir.txt`...

awaiting review
DO-NOT-MERGE

# Bug report WASI has a capability-based security concept. A process must have a valid handle to open a resource. For example WASI runtimes let processes only open files that...

type-bug
3.11
3.12

BPO | [25489](https://bugs.python.org/issue25489) --- | :--- Nosy | @gvanrossum, @bitdancer, @asvetlov, @1st1, @iritkatriel Files | [test_sys_exit_in_exception_handler.py](https://bugs.python.org/file40867/test_sys_exit_in_exception_handler.py "Uploaded as text/plain at 2015-10-27.11:25:55 by jinty"): Test Case[future.patch](https://bugs.python.org/file40869/future.patch "Uploaded as text/plain at 2015-10-27.16:05:21...

expert-asyncio

demo reproducer: ```python import unittest import asyncio class DemoTestCase1(unittest.IsolatedAsyncioTestCase): def setUp(self): self.loop = asyncio.get_event_loop_policy().get_event_loop() async def test_demo(self): print("hello!") class DemoTestCase2(unittest.IsolatedAsyncioTestCase): def setUp(self): self.loop = asyncio.get_event_loop_policy().get_event_loop() async def test_demo(self): print("hello!") if...

type-bug
expert-asyncio
3.11
3.12