https://github.com/python/cpython/commit/b9667e8243fcac869b2b076c4d3d99b56f05642e commit: b9667e8243fcac869b2b076c4d3d99b56f05642e branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 <[email protected]> date: 2024-08-17T14:33:04+05:30 summary:
[3.12] fix typo in dis.rst (GH-121612) (#123096) 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 9414bee71880bb..76f1d67811d492 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1462,7 +1462,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]
