[Python-checkins] r82480 - python/branches/py3k/Doc/library/dis.rst
georg.brandl
python-checkins at python.org
Sat Jul 3 12:21:51 CEST 2010
Author: georg.brandl
Date: Sat Jul 3 12:21:50 2010
New Revision: 82480
Log:
Wrap and use the correct directive.
Modified:
python/branches/py3k/Doc/library/dis.rst
Modified: python/branches/py3k/Doc/library/dis.rst
==============================================================================
--- python/branches/py3k/Doc/library/dis.rst (original)
+++ python/branches/py3k/Doc/library/dis.rst Sat Jul 3 12:21:50 2010
@@ -10,7 +10,13 @@
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`::
More information about the Python-checkins
mailing list