summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2019-09-10 15:11:16 (GMT)
committerJulien Palard <julien@palard.fr>2019-09-10 15:11:16 (GMT)
commit912108891db52c2067889be1f4ce5713839807cd (patch)
tree28d4a45ab655e20d31a0ff0272723ed66529d1af
parentb6dafe51399f5c6313a00529118a6052b466942f (diff)
downloadcpython-912108891db52c2067889be1f4ce5713839807cd.zip
cpython-912108891db52c2067889be1f4ce5713839807cd.tar.gz
cpython-912108891db52c2067889be1f4ce5713839807cd.tar.bz2
bpo-33602: Doc: Remove set and queue references from Data Types (GH-7055)
-rw-r--r--Doc/library/datatypes.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst
index 48af082..94010c0 100644
--- a/Doc/library/datatypes.rst
+++ b/Doc/library/datatypes.rst
@@ -5,13 +5,14 @@ Data Types
**********
The modules described in this chapter provide a variety of specialized data
-types such as dates and times, fixed-type arrays, heap queues, synchronized
-queues, and sets.
+types such as dates and times, fixed-type arrays, heap queues, double-ended
+queues, and enumerations.
Python also provides some built-in data types, in particular,
:class:`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and
:class:`tuple`. The :class:`str` class is used to hold
-Unicode strings, and the :class:`bytes` class is used to hold binary data.
+Unicode strings, and the :class:`bytes` and :class:`bytearray` classes are used
+to hold binary data.
The following modules are documented in this chapter: