diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-05-19 13:25:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 23:25:43 +0300 |
commit | e5b6f38df4776b1a1a223040eb265d77ec6367d4 (patch) | |
tree | a1a0553b87a4b78046a39da29ef8c85935f0014a | |
parent | [3.11] gh-104659: Consolidate python examples in enum documentation (#104665)... (diff) | |
download | cpython-e5b6f38df4776b1a1a223040eb265d77ec6367d4.tar.gz cpython-e5b6f38df4776b1a1a223040eb265d77ec6367d4.tar.bz2 cpython-e5b6f38df4776b1a1a223040eb265d77ec6367d4.zip |
[3.11] docs: fix wrong indentation causing rendering error in dis page (GH-104661) (#104670)
docs: fix wrong indentation causing rendering error in dis page (GH-104661)
(cherry picked from commit 3bc94e678f2961eafc9d665898d73afc6204d314)
Co-authored-by: Nyakku Shigure <sigure.qaq@gmail.com>
-rw-r--r-- | Doc/library/dis.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index aec095dd760..779793811ef 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -569,8 +569,8 @@ the original TOS1. .. versionadded:: 3.8 - .. versionchanged:: 3.11 - Exception representation on the stack now consist of one, not three, items. + .. versionchanged:: 3.11 + Exception representation on the stack now consist of one, not three, items. .. opcode:: BEFORE_ASYNC_WITH |