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

# 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...

type-bug

* 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...

awaiting review

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...

type-bug

# 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)

docs

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...

type-bug
build

# 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...

type-bug

``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...

type-feature
performance

### 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...

type-feature
interpreter-core
3.12

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...

type-feature
docs
expert-sqlite3