diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-30 20:33:31 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-30 20:33:31 (GMT) |
commit | aa54e2ff5e46a875e6f7dfe5295575d2b6dc3e93 (patch) | |
tree | 8a00de35c73e3d4961d6c6149008f0d20a8032af /Doc | |
parent | ab6ab15e7d4191fe8ea885262d48f880b591c7e8 (diff) | |
download | cpython-aa54e2ff5e46a875e6f7dfe5295575d2b6dc3e93.zip cpython-aa54e2ff5e46a875e6f7dfe5295575d2b6dc3e93.tar.gz cpython-aa54e2ff5e46a875e6f7dfe5295575d2b6dc3e93.tar.bz2 |
#16518: add "bytes-like object" to the glossary.
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 |