]> granicus.if.org Git - python/commitdiff
Wrap and use the correct directive.
authorGeorg Brandl <georg@python.org>
Sat, 3 Jul 2010 10:21:50 +0000 (10:21 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 3 Jul 2010 10:21:50 +0000 (10:21 +0000)
Doc/library/dis.rst

index 807ee8b361256831b30d8719235bb2c70542051a..1b486bf5defcc45db28199acd23ea76f9f811a6c 100644 (file)
@@ -10,7 +10,13 @@ disassembling it. The CPython bytecode which this module takes as an
 input is defined in the file :file:`Include/opcode.h` and used by the compiler
 and the interpreter.
 
-.. 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.
+.. impl-detail::
+
+   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.
+
 
 Example: Given the function :func:`myfunc`::