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 | 1c0d8a7fd7bc8b7925ec34a23bc5a954e559ec15 (patch) | |
tree | f8a907051fd5354e49062fc87154f93d2b8744a1 | |
parent | 4832f34f057fbaea4c99953bb0777805b9a96f3e (diff) | |
download | cpython-1c0d8a7fd7bc8b7925ec34a23bc5a954e559ec15.zip cpython-1c0d8a7fd7bc8b7925ec34a23bc5a954e559ec15.tar.gz cpython-1c0d8a7fd7bc8b7925ec34a23bc5a954e559ec15.tar.bz2 |
#16518: add "bytes-like object" to the glossary.
-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 3641e5c..19b02f4 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -77,6 +77,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 |