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

Part of #95913 Adds a section for `tempfile` to the 3.11 What's New, mentioning that `tempfile.SpooledTemporaryFIle` now supports the full range of IO base class methods, as added in issue...

docs
awaiting review
skip news
3.11
needs backport to 3.11

Deprecate the child watchers system and the policy system in favour of `asyncio.Runner(loop_factory=asyncio.ProactorEventLoop/asyncio.SelectorEventLoop/uvloop.new_event_loop)` that would be deprecating: ``` asyncio.get_event_loop() # already deprecated unless the loop is running asyncio.set_event_loop() # asyncio.set_event_loop(None)...

expert-asyncio
stdlib
3.12

BPO | [26832](https://bugs.python.org/issue26832) --- | :--- Nosy | @terryjreedy, @pfmoore, @mjpieters, @tjguk, @zware, @1st1, @zooba, @minrk *Note: these values reflect the state of the issue at the time it was...

docs
topic-asyncio
OS-windows

* Issue: gh-98327

expert-asyncio
awaiting review
skip news

* Issue: gh-98331

awaiting core review

on python3.10 the following prints: ``` python3.10 demo.py /home/graingert/projects/cpython/demo.py:40: DeprecationWarning: demo warning warnings.warn("demo warning", DeprecationWarning) /home/graingert/projects/cpython/demo.py:48: DeprecationWarning: demo warning2 warnings.warn("demo warning2", DeprecationWarning) ``` but on python main it prints: ```...

expert-asyncio
3.12

* Issue: gh-87634

awaiting review
DO-NOT-MERGE

# Feature or enhancement Routine update of the bundled pip and setuptools wheels in `ensurepip` following a pip release.

type-feature

# Bug report `ZipFile.writestr()` raises `IndexError` for empty filenames unless one creates the `ZipInfo` manually: ```py >>> import zipfile >>> zf = zipfile.ZipFile("x.zip", "w") >>> zf.writestr("", "Hello, World!") Traceback (most...

type-bug

# Bug report I tried everything possible trying it in different pc , using VMware , used it in 10, and 11 , too and still boom idle is not...

type-bug
expert-IDLE