mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -20,13 +20,13 @@ Glossary
|
|||
Benevolent Dictator For Life, a.k.a. `Guido van Rossum
|
||||
<http://www.python.org/~guido/>`_, Python's creator.
|
||||
|
||||
byte code
|
||||
The internal representation of a Python program in the interpreter. The
|
||||
byte code is also cached in ``.pyc`` and ``.pyo`` files so that executing
|
||||
the same file is faster the second time (recompilation from source to byte
|
||||
code can be avoided). This "intermediate language" is said to run on a
|
||||
"virtual machine" that calls the subroutines corresponding to each
|
||||
bytecode.
|
||||
bytecode
|
||||
Python source code is compiled into bytecode, the internal representation
|
||||
of a Python program in the interpreter. The bytecode is also cached in
|
||||
``.pyc`` and ``.pyo`` files so that executing the same file is faster the
|
||||
second time (recompilation from source to bytecode can be avoided). This
|
||||
"intermediate language" is said to run on a "virtual machine" that calls
|
||||
the subroutines corresponding to each bytecode.
|
||||
|
||||
classic class
|
||||
Any class which does not inherit from :class:`object`. See
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue