diff options
author | Georg Brandl <georg@python.org> | 2010-07-03 10:26:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-03 10:26:54 (GMT) |
commit | 2cb72d3aad0ea64193b94033900e107d82ac5cec (patch) | |
tree | adf18ba2be5140d13acc8b1736e7f3e011d3d2b0 /Doc/glossary.rst | |
parent | eccd50a0db089028ccadef9aeb1ab8b28dc05f32 (diff) | |
download | cpython-2cb72d3aad0ea64193b94033900e107d82ac5cec.zip cpython-2cb72d3aad0ea64193b94033900e107d82ac5cec.tar.gz cpython-2cb72d3aad0ea64193b94033900e107d82ac5cec.tar.bz2 |
Merged revisions 82483 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82483 | georg.brandl | 2010-07-03 12:25:54 +0200 (Sa, 03 Jul 2010) | 1 line
Add link to bytecode docs.
........
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 98744eb..036381f 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -66,6 +66,9 @@ Glossary different Python virtual machines, nor to be stable between Python releases. + 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 |