[3.13] fix typo in dis.rst (GH-121612) (#123095)

fix typo in dis.rst (GH-121612)
(cherry picked from commit e9287ea426)

Co-authored-by: mathysEthical <110499907+mathysEthical@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2024-08-17 11:11:33 +02:00 committed by GitHub
parent 2620c1543b
commit 8d95102447
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1585,7 +1585,7 @@ iterations of the loop.
end = STACK.pop()
start = STACK.pop()
STACK.append(slice(start, stop))
STACK.append(slice(start, end))
if it is 3, implements::