Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19b7a87

Browse files
committed
Wrap and use the correct directive.
1 parent 39af05f commit 19b7a87

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Doc/library/dis.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ disassembling it. The CPython bytecode which this module takes as an
1010
input is defined in the file :file:`Include/opcode.h` and used by the compiler
1111
and the interpreter.
1212

13-
.. warning:: Bytecode is an implementation detail of the CPython interpreter! No guarantees are made that bytecode will not be added, removed, or changed between versions of Python. Use of this module should not be considered to work across Python VMs or Python releases.
13+
.. impl-detail::
14+
15+
Bytecode is an implementation detail of the CPython interpreter! No
16+
guarantees are made that bytecode will not be added, removed, or changed
17+
between versions of Python. Use of this module should not be considered to
18+
work across Python VMs or Python releases.
19+
1420

1521
Example: Given the function :func:`myfunc`::
1622

0 commit comments

Comments
 (0)