https://github.com/python/cpython/commit/8d951024471fc310a04f90b5c39355e2c0fbd163 commit: 8d951024471fc310a04f90b5c39355e2c0fbd163 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 <[email protected]> date: 2024-08-17T09:11:33Z summary:
[3.13] fix typo in dis.rst (GH-121612) (#123095) fix typo in dis.rst (GH-121612) (cherry picked from commit e9287ea426e8e1b930f1c3f0cb949a1416d29090) Co-authored-by: mathysEthical <[email protected]> files: M Doc/library/dis.rst diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index a899e16a0167f3..a0d70e49e8f14e 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -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:: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
