summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-19 00:14:03 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-19 00:14:03 (GMT)
commit29a0b57e4ed19532dc78dbf08b957c85bfbafbd6 (patch)
treeb7fae5150cb2e44679947e109e68eb2a05076f7d /Doc/library/dis.rst
parentd478a46d563413d51a730678e4c72a54d2881123 (diff)
downloadcpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.zip
cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.tar.gz
cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.tar.bz2
Backport source links from 3.x.
Existing links have been updated to use the new reST role. In some files, I have also made cosmetic changes to the header.
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r--Doc/library/dis.rst9
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 9addfe7..8dee901 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1,21 +1,18 @@
-
:mod:`dis` --- Disassembler for Python bytecode
===============================================
.. module:: dis
:synopsis: Disassembler for Python bytecode.
+**Source code:** :source:`Lib/dis.py`
+
+--------------
The :mod:`dis` module supports the analysis of CPython :term:`bytecode` by
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.
-.. seealso::
-
- Latest version of the `dis module Python source code
- <http://svn.python.org/view/python/branches/release27-maint/Lib/dis.py?view=markup>`_
-
.. impl-detail::
Bytecode is an implementation detail of the CPython interpreter! No