From 79715367865321c42c3eccc0664a9d137eb71ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Tue, 22 May 2018 11:15:09 -0300 Subject: [PATCH 1/3] Remove set and queue references --- Doc/library/datatypes.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst index 48af0823aa4912..83703f8ee60ee1 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 and 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: From 3c58ded92860da995ecc3f1b7d89b691d0953711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Tue, 22 May 2018 16:38:47 -0300 Subject: [PATCH 2/3] Preserve 'heap queues' --- Doc/library/datatypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst index 83703f8ee60ee1..5095afc5b93ca1 100644 --- a/Doc/library/datatypes.rst +++ b/Doc/library/datatypes.rst @@ -5,7 +5,7 @@ Data Types ********** The modules described in this chapter provide a variety of specialized data -types such as dates and times, fixed-type arrays, heap and double-ended +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, From cf8e78acba8569a6ba0c1030c00e08ca297f8c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Tue, 29 May 2018 23:42:40 -0300 Subject: [PATCH 3/3] Add missing comma --- Doc/library/datatypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst index 5095afc5b93ca1..94010c0e391b0b 100644 --- a/Doc/library/datatypes.rst +++ b/Doc/library/datatypes.rst @@ -6,7 +6,7 @@ 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, double-ended -queues and enumerations. +queues, and enumerations. Python also provides some built-in data types, in particular, :class:`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and