~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/library/numbers.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
.. class:: Complex
25
25
 
26
26
   Subclasses of this type describe complex numbers and include the operations
27
 
   that work on the builtin :class:`complex` type. These are: conversions to
 
27
   that work on the built-in :class:`complex` type. These are: conversions to
28
28
   :class:`complex` and :class:`bool`, :attr:`.real`, :attr:`.imag`, ``+``,
29
29
   ``-``, ``*``, ``/``, :func:`abs`, :meth:`conjugate`, ``==``, and ``!=``. All
30
30
   except ``-`` and ``!=`` are abstract.