cpython
cpython copied to clipboard
The Python programming language
suppported -> supported and removed an outdated link: http://projects.scipy.org/numpy/ticket/1910 Now this link is 404
I was trying to write an extension for Idle, and was noticing extension keys defined in ~/.idlerc weren't being used, so I looked into it and found that in idlelib.config.idleConf,...
Write to a temporary file first, then rename it to the intended `jit_stencils.h` file. This keeps other build steps from assuming that the file has been successfully generated when it's...
BPO | [25419](https://bugs.python.org/issue25419) --- | :--- Nosy | @vadmium, @serhiy-storchaka, @MojoVampire Dependencies | bpo-16182: readline: Wrong tab completion scope indices in Unicode terminals Files | [complete-import.patch](https://bugs.python.org/file40794/complete-import.patch "Uploaded as text/plain at...
Based on #15297. Co-authored-by: Ashwin Ramaswami * Issue: gh-78457 * Issue: gh-67693
BPO | [34276](https://bugs.python.org/issue34276) --- | :--- Nosy | @cjerdonek, @vadmium, @tirkarthi, @vladima, @epicfaace PRs | python/cpython#15297 *Note: these values reflect the state of the issue at the time it was...
Based on Bayard's patch in https://bugs.python.org/issue15393 Fixes #59598 * Issue: gh-59598
gh-118950: Fix SSLProtocol.connection_lost not being called when OSError is thrown on asyncio.write.
Let _SSLProtocolTransport.is_closing reflect SSLProtocol internal transport closing state so that StreamWriter.drain will invoke sleep(0) which calls connection_lost and correctly notifies waiters of connection lost. (#118950) In an existing comment in...
`asyncio.sslproto._SSLProtocolTransport` can experience invalid state, leading to silent failures.
# Bug report ### Bug description: ## TL;DR `_SSLProtocolTransport.is_closing` should match its inner `_SelectorTransport.is_closing`, indicating to the user that the transport is actually closed instead of silently logging an error....