summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-17 12:29:12 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-17 12:29:12 (GMT)
commit71515ca191f32651c923c70e891632b4ac820b4f (patch)
treed6694e4aabe615b76ca113374bf35cd817fca330 /Doc/library/dis.rst
parentef0a865f9c906a1298c43a453b2195d86befd6a4 (diff)
downloadcpython-71515ca191f32651c923c70e891632b4ac820b4f.zip
cpython-71515ca191f32651c923c70e891632b4ac820b4f.tar.gz
cpython-71515ca191f32651c923c70e891632b4ac820b4f.tar.bz2
Remove surplus empty lines and convert more files to new optional arg style.
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r--Doc/library/dis.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index c5a7ea8..8d4d956 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1,4 +1,3 @@
-
:mod:`dis` --- Disassembler for Python bytecode
===============================================
@@ -6,11 +5,11 @@
:synopsis: Disassembler for Python bytecode.
-The :mod:`dis` module supports the analysis of Python :term:`bytecode` by disassembling
-it. Since there is no Python assembler, this module defines the Python assembly
-language. The Python 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.
+The :mod:`dis` module supports the analysis of Python :term:`bytecode` by
+disassembling it. Since there is no Python assembler, this module defines the
+Python assembly language. The Python 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.
Example: Given the function :func:`myfunc`::