~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Doc/library/numeric.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
ImportĀ upstreamĀ versionĀ 2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
.. _numeric:
 
3
 
 
4
********************************
 
5
Numeric and Mathematical Modules
 
6
********************************
 
7
 
 
8
The modules described in this chapter provide numeric and math-related functions
 
9
and data types. The :mod:`numbers` module defines an abstract hierarchy of
 
10
numeric types. The :mod:`math` and :mod:`cmath` modules contain various
 
11
mathematical functions for floating-point and complex numbers. For users more
 
12
interested in decimal accuracy than in speed, the :mod:`decimal` module supports
 
13
exact representations of decimal numbers.
 
14
 
 
15
The following modules are documented in this chapter:
 
16
 
 
17
 
 
18
.. toctree::
 
19
 
 
20
   numbers.rst
 
21
   math.rst
 
22
   cmath.rst
 
23
   decimal.rst
 
24
   fractions.rst
 
25
   random.rst
 
26
   itertools.rst
 
27
   functools.rst
 
28
   operator.rst