summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-21 10:24:20 (GMT)
committerGeorg Brandl <georg@python.org>2007-10-21 10:24:20 (GMT)
commit63fa16832617bfad010e3e70e7f10f713afd7593 (patch)
tree2f24ea291751a34d0b556833b5a1c3c353fb23a8 /Doc/howto
parentfa6179701c0dd7f2ecc21fe0ff6204a4e865094f (diff)
downloadcpython-63fa16832617bfad010e3e70e7f10f713afd7593.zip
cpython-63fa16832617bfad010e3e70e7f10f713afd7593.tar.gz
cpython-63fa16832617bfad010e3e70e7f10f713afd7593.tar.bz2
Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/functional.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index bc12793..78520d1 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -448,7 +448,7 @@ Here's the simplest example of a generator function::
yield i
Any function containing a ``yield`` keyword is a generator function; this is
-detected by Python's bytecode compiler which compiles the function specially as
+detected by Python's :term:`bytecode` compiler which compiles the function specially as
a result.
When you call a generator function, it doesn't return a single value; instead it