summaryrefslogtreecommitdiff
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-11 13:02:52 +0800
committerGitHub <noreply@github.com>2017-03-11 13:02:52 +0800
commit0710d754255e731e6fcc3f206b51db6156da17c8 (patch)
treef3d24f09ed0c3ba415d99a070d9cdc7bdd460123 /Doc/glossary.rst
parent70ee0cd5c2a3dba82cb8e0c0742c012f9134c040 (diff)
downloadcpython-git-0710d754255e731e6fcc3f206b51db6156da17c8.tar.gz
bpo-29770: remove outdated PYO related info (GH-590)
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 41ee3d83b3..e07ab0df2f 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -155,7 +155,7 @@ Glossary
bytecode
Python source code is compiled into bytecode, the internal representation
of a Python program in the CPython interpreter. The bytecode is also
- cached in ``.pyc`` and ``.pyo`` files so that executing the same file is
+ cached in ``.pyc`` 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
:term:`virtual machine` that executes the machine code corresponding to