cpython
cpython copied to clipboard
The Python programming language
# Feature or enhancement They are different now:  Hm, right now I don't see any simple way of merging these two together: https://github.com/python/cpython/blob/c68acb1384a51eb745f572687eaf677371b9e765/Lib/asyncio/__main__.py#L15-L21 and https://github.com/python/cpython/blob/c68acb1384a51eb745f572687eaf677371b9e765/Lib/_pyrepl/simple_interact.py#L81-L83 I think that this...
BPO | [1539925](https://bugs.python.org/issue1539925) --- | :--- Nosy | @malemburg, @birkenfeld, @ncoghlan, @vadmium, @serhiy-storchaka *Note: these values reflect the state of the issue at the time it was migrated and might...
BPO | [28140](https://bugs.python.org/issue28140) --- | :--- Nosy | @terryjreedy, @ncoghlan, @aroberge, @stevendaprano, @1st1, @tomviner, @pablogsal, @iritkatriel, @AlexWaygood PRs | python/cpython#8536 *Note: these values reflect the state of the issue at...
BPO | [34091](https://bugs.python.org/issue34091) --- | :--- Nosy | @pfmoore, @ericvsmith, @tjguk, @vadmium, @zware, @zooba, @segevfiner, @maxnoe *Note: these values reflect the state of the issue at the time it was...
The current `_pyrepl` module type checks use `if False`, often with a `# types` comment above them, for condition imports that are only for type checking. It'd be a little...
# Bug report ### Bug description: Hi, I've been trying to follow the build instructions from [here](https://devguide.python.org/getting-started/setup-building/#wasi) to build to wasi. I get the following error when running `python3 Tools/wasm/wasi.py...
As reported in #117847 and #115366, an unpaired backtick in a docstring tends to confuse e.g. Sphinx running on subclasses of standard library objects, and the typographic style of using...
Thread safety in count_next. count_next has two modes. slow mode (obj->cnt set to PY_SSIZE_T_MAX), which now uses the object mutex (only if GIL is disabled) and fast mode, which is...
# Bug report ### Bug description: Consider this: ```pycon >>> 1 1 >>> 2 2 >>> 2 2 >>> 2 2 >>> 2 2 >>> 2 2 >>> 2 2...