Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.

This commit is contained in:
Georg Brandl 2007-10-21 10:24:20 +00:00
parent fa6179701c
commit 63fa168326
10 changed files with 40 additions and 40 deletions

View file

@ -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