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-86608 ---- 📚 Documentation preview 📚: https://cpython-previews--121771.org.readthedocs.build/

docs
awaiting review

BPO | [13305](https://bugs.python.org/issue13305) --- | :--- Nosy | @jaraco, @abalkin, @vstinner, @ned-deily, @ezio-melotti, @florentx, @vadmium, @elenaoat, @pganssle, @Fronkan Superseder | bpo-3173: external strftime for Python? Files | [issue13305_xmlrpc_patch.diff](https://bugs.python.org/file23577/issue13305_xmlrpc_patch.diff "Uploaded as...

type-bug
docs
stdlib
3.9
3.8
3.7 (EOL)

---- 📚 Documentation preview 📚: https://cpython-previews--114583.org.readthedocs.build/

docs
skip issue
awaiting review
skip news
needs backport to 3.12
needs backport to 3.13

(cherry picked from commit 5d6861ad06b524358f52603f242e7c0d57532a58) * Issue: gh-121621

awaiting merge
skip news
topic-free-threading

# Bug report ### Bug description: When creating an email with EmailMessage() that contains an HTML part with images using a multipart/related structure as the outter MIME structure, the resulting...

type-bug
topic-email

The following simple balanced calls to `Py_Initialize()` / `Py_FinalizeEx()` trigger an error when running under Microsoft's Application Verifier on Windows: ```c Py_Initialize(); Py_FinalizeEx(); Py_Initialize(); Py_FinalizeEx(); ``` The above sequence causes...

type-bug
interpreter-core
topic-subinterpreters

BPO | [42831](https://bugs.python.org/issue42831) --- | :--- Nosy | @terryjreedy, @taleinat, @E-Paine *Note: these values reflect the state of the issue at the time it was migrated and might not reflect...

type-bug
topic-IDLE
easy
3.10
3.9
3.8

BPO | [42442](https://bugs.python.org/issue42442) --- | :--- *Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.* Show more...

docs
3.9
3.8
3.7 (EOL)

# Bug report ### Bug description: An example where parsing stops after the ``: ```python from html.parser import HTMLParser from io import StringIO class HTML2text(HTMLParser): def __init__(self): super().__init__() self.data =...

type-bug

[escapable raw text elements](https://html.spec.whatwg.org/multipage/syntax.html#escapable-raw-text-elements) are not handled in the current HTMLParser implementation. This PR extends the existing parser with an additional mode to handle this correctly. * Issue: gh-118350

awaiting review