cpython
cpython copied to clipboard
The Python programming language
# Problem I started getting this error: ```console $ make -C Doc clean rm -rf ./venv rm -rf build/* $ make -C Doc html mkdir -p build Building NEWS from...
Occasional incorrect chaining of CancelledError when calling 'cancel' on result of 'asyncio.gather'
```python import asyncio async def f1(): await asyncio.sleep(1) async def f2(): return 42 async def main(): # case 1 gfut = asyncio.gather(f1(), f2(), return_exceptions=True) # case 2 #gfut = asyncio.gather(f2(),...
The syntax error for mismatched brackets uses a caret to point to the closing bracket. But sometimes it is the opening bracket which is wrong. We should point a caret...
BPO | [38874](https://bugs.python.org/issue38874) --- | :--- Nosy | @asvetlov, @1st1, @MojoVampire, @rhdxmr Files | [poc-oooput.py](https://bugs.python.org/file48740/poc-oooput.py "Uploaded as text/plain at 2019-11-22.06:43:48 by @rhdxmr") *Note: these values reflect the state of the...
BPO | [38314](https://bugs.python.org/issue38314) --- | :--- Nosy | @asvetlov, @1st1, @progmatic-99, @callumquick, @benedwards14 PRs | python/cpython#17042python/cpython#17755 *Note: these values reflect the state of the issue at the time it was...
BPO | [36805](https://bugs.python.org/issue36805) --- | :--- Nosy | @asvetlov, @1st1 *Note: these values reflect the state of the issue at the time it was migrated and might not reflect the...
BPO | [34971](https://bugs.python.org/issue34971) --- | :--- Nosy | @tiran, @asvetlov, @1st1, @RemiCardona, @cooperlees PRs | python/cpython#9840 *Note: these values reflect the state of the issue at the time it was...
BPO | [34847](https://bugs.python.org/issue34847) --- | :--- Nosy | @fantix, @asvetlov, @1st1 PRs | python/cpython#9460 *Note: these values reflect the state of the issue at the time it was migrated and...
BPO | [33624](https://bugs.python.org/issue33624) --- | :--- Nosy | @asvetlov, @1st1, @ilevkivskyi *Note: these values reflect the state of the issue at the time it was migrated and might not reflect...
Add support to files that have key-value pairs before any section or no section at all. Unnamed sections are enabled when passing `allow_unnamed_section=True` to `configparser.ConfigParser` and are stored as an...