mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.
This commit is contained in:
parent
fa6179701c
commit
63fa168326
10 changed files with 40 additions and 40 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue