blob: 4cd042d503ae0dbb720a5839cf6e22c32abf4236 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2.. _datatypes:
3
4**********
5Data Types
6**********
7
8The modules described in this chapter provide a variety of specialized data
9types such as dates and times, fixed-type arrays, heap queues, synchronized
10queues, and sets.
11
12Python also provides some built-in data types, in particular,
13:class:`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and
14:class:`tuple`. The :class:`str` class can be used to handle binary data
15and 8-bit text, and the :class:`unicode` class to handle Unicode text.
16
17The following modules are documented in this chapter:
18
19
20.. toctree::
21
22 datetime.rst
23 calendar.rst
24 collections.rst
25 heapq.rst
26 bisect.rst
27 array.rst
28 sched.rst
29 mutex.rst
30 queue.rst
31 weakref.rst
32 userdict.rst
33 types.rst
34 new.rst
35 copy.rst
36 pprint.rst
37 repr.rst