summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-11 06:07:30 (GMT)
committerGitHub <noreply@github.com>2017-03-11 06:07:30 (GMT)
commit16416c22f9b8d9e067506d3a98f661756c80389c (patch)
treef8fe29c4fd16a8ae4b12cf3543f0de3b146a608a /Doc/glossary.rst
parent701f13ab930b62a634579951dc610f737f461135 (diff)
downloadcpython-16416c22f9b8d9e067506d3a98f661756c80389c.zip
cpython-16416c22f9b8d9e067506d3a98f661756c80389c.tar.gz
cpython-16416c22f9b8d9e067506d3a98f661756c80389c.tar.bz2
bpo-29770: remove outdated PYO related info (GH-590) (GH-612)
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 41ee3d8..e07ab0d 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