[Python-checkins] r82483 - python/trunk/Doc/glossary.rst

georg.brandl python-checkins at python.org
Sat Jul 3 12:25:54 CEST 2010


Author: georg.brandl
Date: Sat Jul  3 12:25:54 2010
New Revision: 82483

Log:
Add link to bytecode docs.

Modified:
   python/trunk/Doc/glossary.rst

Modified: python/trunk/Doc/glossary.rst
==============================================================================
--- python/trunk/Doc/glossary.rst	(original)
+++ python/trunk/Doc/glossary.rst	Sat Jul  3 12:25:54 2010
@@ -63,6 +63,9 @@
       "intermediate language" is said to run on a :term:`virtual machine`
       that executes the machine code corresponding to each bytecode.
 
+      A list of bytecode instructions can be found in the documentation for
+      :ref:`the dis module <bytecodes>`.
+
    class
       A template for creating user-defined objects. Class definitions
       normally contain method definitions which operate on instances of the


More information about the Python-checkins mailing list