diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-30 20:34:41 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-30 20:34:41 (GMT) |
commit | e1419e80cf0527e60b56b7a216e87042b7749f0e (patch) | |
tree | 45d40b1be58c5c57320effbd4aedaa1a710d74cd /Doc | |
parent | 3b0431dc6019d2f9ffa9adcaa78ddd3f7b76a2f5 (diff) | |
parent | aa54e2ff5e46a875e6f7dfe5295575d2b6dc3e93 (diff) | |
download | cpython-e1419e80cf0527e60b56b7a216e87042b7749f0e.zip cpython-e1419e80cf0527e60b56b7a216e87042b7749f0e.tar.gz cpython-e1419e80cf0527e60b56b7a216e87042b7749f0e.tar.bz2 |
#16518: merge with 3.3.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/glossary.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 5c0a525..19419a3 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -78,6 +78,10 @@ Glossary Benevolent Dictator For Life, a.k.a. `Guido van Rossum <http://www.python.org/~guido/>`_, Python's creator. + bytes-like object + An object that supports the :ref:`bufferobjects`, like :class:`bytes` or + :class:`bytearray`. + bytecode Python source code is compiled into bytecode, the internal representation of a Python program in the CPython interpreter. The bytecode is also |