Issue #5262: Improved fix.
[python.git] / Doc / library / datatypes.rst
blob4ebaa6cc55d5f40d0c18babf92ad5729d3137493
2 .. _datatypes:
4 **********
5 Data Types
6 **********
8 The modules described in this chapter provide a variety of specialized data
9 types such as dates and times, fixed-type arrays, heap queues, synchronized
10 queues, and sets.
12 Python also provides some built-in data types, in particular,
13 :class:`dict`, :class:`list`, :class:`set` (which along with
14 :class:`frozenset`, replaces the deprecated :mod:`sets` module), and
15 :class:`tuple`. The :class:`str` class can be used to handle binary data
16 and 8-bit text, and the :class:`unicode` class to handle Unicode text.
18 The following modules are documented in this chapter:
21 .. toctree::
23    datetime.rst
24    calendar.rst
25    collections.rst
26    heapq.rst
27    bisect.rst
28    array.rst
29    sets.rst
30    sched.rst
31    mutex.rst
32    queue.rst
33    weakref.rst
34    userdict.rst
35    types.rst
36    new.rst
37    copy.rst
38    pprint.rst
39    repr.rst