diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 10:24:20 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 10:24:20 +0000 |
commit | 7b4ce67ef1ee56e280521598e52d451dec0b29ab (patch) | |
tree | 4da3ded309a418cdb335807b3b3f815f6b6e0a64 /Doc/howto | |
parent | da7c0ac1afa266b8570cc731d93362c8dcf91be4 (diff) | |
download | cpython-7b4ce67ef1ee56e280521598e52d451dec0b29ab.tar.gz |
Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/functional.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index bc1279366b..78520d1b7f 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 |