cpython
cpython copied to clipboard
The Python programming language
# Bug report In python 3.11 asyncio module, a new version of `set_write_buffer_limits` and `get_write_buffer_limits` has been introduced for SSL (sslproto.py), that doesn't delegate to the transport layer. However the...
* Issue: gh-99278 @tiran does this need a NEWS.d entry or is it considered trivial? _edit:_ it looks like I am editing in generated files, and I actually need to...
I was trying to use the `--with-openssl` option and saw: checking for openssl/ssl.h in /path/to/openssl-1.1.1g/include... no But that's exactly where it was, file existing at `/path/to/openssl-1.1.1g/include/openssl/ssl.h` I had to look...
# Documentation Add link to the first article about Python (https://ir.cwi.nl/pub/18204) to part about Python articles (https://docs.python.org/3/faq/general.html#are-there-any-published-articles-about-python-that-i-can-reference)
Building the main branch in AIX is broken with the below error. ``` ./python -E -S -m sysconfig --generate-posix-vars ;\ if test $? -ne 0 ; then \ echo "generate-posix-vars...
# Bug report A change was made in Python v3.8 where, on Windows, EXT_SUFFIX was initialised from the first element of the list returned by _imp.extension_suffixes(). In previous versions this...
``sysconfig`` is currently a bit slow to be able to imported at startup, as would be required in #88142, so it would make sense to try to speed it up...
### Overview Over in [faster-cpython/ideas](https://github.com/faster-cpython/ideas) we've been exploring the idea of generating the interpreter from a set of instruction definitions. This will eventually enable having multiple versions of the interpreter...
The SQL injection attack example in the sqlite3 docs takes no user input, hence it is not susceptible to an injection attack and serves badly as an example. Also, it...