cpython
cpython copied to clipboard
The Python programming language
* Issue: gh-86608 ---- 📚 Documentation preview 📚: https://cpython-previews--121771.org.readthedocs.build/
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...
---- 📚 Documentation preview 📚: https://cpython-previews--114583.org.readthedocs.build/
(cherry picked from commit 5d6861ad06b524358f52603f242e7c0d57532a58) * Issue: gh-121621
# 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...
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...
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...
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...
# 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 =...
[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