diff options
Diffstat (limited to 'Doc/library/compiler.rst')
-rw-r--r-- | Doc/library/compiler.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/compiler.rst b/Doc/library/compiler.rst index 96f4fc3..6d42dc9 100644 --- a/Doc/library/compiler.rst +++ b/Doc/library/compiler.rst @@ -10,8 +10,8 @@ Python compiler package The Python compiler package is a tool for analyzing Python source code and generating Python bytecode. The compiler contains libraries to generate an -abstract syntax tree from Python source code and to generate Python bytecode -from the tree. +abstract syntax tree from Python source code and to generate Python +:term:`bytecode` from the tree. The :mod:`compiler` package is a Python source to bytecode translator written in Python. It uses the built-in parser and standard :mod:`parser` module to |