https://github.com/python/cpython/commit/e9287ea426e8e1b930f1c3f0cb949a1416d29090
commit: e9287ea426e8e1b930f1c3f0cb949a1416d29090
branch: main
author: mathysEthical <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2024-08-17T14:20:58+05:30
summary:

fix typo in dis.rst (#121612)

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 440ca233584e57..a770ad87ab02d3 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1555,7 +1555,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]

Reply via email to