cpython
cpython copied to clipboard
The Python programming language
## CI failure history - https://github.com/python/cpython/actions/runs/3069822692/jobs/4958905267 - https://github.com/python/cpython/actions/runs/3105434391/jobs/5032588687 ## CI log ````` test_write_stdout (idlelib.idle_test.test_squeezer.SqueezerTest) macOS 11 (1107) or later required, have instead 11 (1106) ! Fatal Python error: Aborted Current...
# Feature or enhancement Support the "Mac Catalyst" flavour of macOS binaries on recentish version of macOS # Pitch MacOS currently has two ways to build "native" applications: 1. The...
As discovered in #98295 , there are several undocumented new APIs in the `enum` module: * `ReprEnum` and is documented in [What's New](https://docs.python.org/3.11/whatsnew/3.11.html#enum) (and exported in `__all__`), but not anywhere...
# Bug report This is a regression from the previous versions of Python 3.10 - 3.7. ```python3.11: Objects/object.c:2276: _PyTrash_thread_destroy_chain: Assertion `tstate->trash_delete_nesting == 1' failed.``` ``` (gdb) bt #0 __pthread_kill_implementation (threadid=,...
https://bugs.python.org/issue40254 The original issue: https://github.com/python/python-docs-ja/issues/24 The patch provided from tk0miya, the Sphinx main contributor: https://gist.github.com/tk0miya/e2de1962f073d389251ba13e285b4336 https://bugs.python.org/issue40254
* Issue: gh-98040
There's no indication that BUILTINS is a special name. Other names that are special to dataclass are all prefixed by an underscore. As mentioned in the issue, we can also...
urllib.parse.urlparse uses `int` to parse port numbers, which means they can contain signs, underscores, and whitespace. This patch adds a check to ensure that only numeric port numbers parse without...
Error message before: ``` TypeError: Can't instantiate abstract class IndexNode with abstract method name ``` Error message after this patch: ``` TypeError: Can't instantiate abstract class IndexNode with abstract method...
BPO | [46194](https://bugs.python.org/issue46194) --- | :--- Nosy | @asvetlov, @1st1, @carlosdamazio, @carlosdamazio PRs | python/cpython#30291 *Note: these values reflect the state of the issue at the time it was migrated...