diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-09-09 08:37:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-09 08:37:02 (GMT) |
commit | 30cc1901efa18180a83bf8402df9e1c10d877c49 (patch) | |
tree | 49d430ab9b3e13b1f7b229967f00ba6515768427 /Misc | |
parent | 569ca27293eec89b5b41c3a12e6531d3eddf0e1b (diff) | |
download | cpython-30cc1901efa18180a83bf8402df9e1c10d877c49.zip cpython-30cc1901efa18180a83bf8402df9e1c10d877c49.tar.gz cpython-30cc1901efa18180a83bf8402df9e1c10d877c49.tar.bz2 |
gh-96364: Fix text signatures of `__getitem__` for `list` and `dict` (GH-96365)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-08-29-00-37-21.gh-issue-96364.c-IVyb.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-08-29-00-37-21.gh-issue-96364.c-IVyb.rst b/Misc/NEWS.d/next/Core and Builtins/2022-08-29-00-37-21.gh-issue-96364.c-IVyb.rst new file mode 100644 index 0000000..8872f9a --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-08-29-00-37-21.gh-issue-96364.c-IVyb.rst @@ -0,0 +1 @@ +Fix text signatures of ``list.__getitem__`` and ``dict.__getitem__``. |