summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-05-10 22:03:16 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-05-10 22:03:16 (GMT)
commitb59a2bd9063c0cc5c57f7f50a6efeceaf4040c66 (patch)
tree9155a3534a642db08263b5ef796860a1134cd535 /Doc
parent386a22962f13ab5ae5ad585993cc0a5fd5149a28 (diff)
downloadcpython-b59a2bd9063c0cc5c57f7f50a6efeceaf4040c66.zip
cpython-b59a2bd9063c0cc5c57f7f50a6efeceaf4040c66.tar.gz
cpython-b59a2bd9063c0cc5c57f7f50a6efeceaf4040c66.tar.bz2
Remove the fpformat module.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/fpformat.rst56
1 files changed, 0 insertions, 56 deletions
diff --git a/Doc/library/fpformat.rst b/Doc/library/fpformat.rst
deleted file mode 100644
index 1a84b72..0000000
--- a/Doc/library/fpformat.rst
+++ /dev/null
@@ -1,56 +0,0 @@
-
-:mod:`fpformat` --- Floating point conversions
-==============================================
-
-.. module:: fpformat
- :synopsis: General floating point formatting functions.
-.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
-
-
-The :mod:`fpformat` module defines functions for dealing with floating point
-numbers representations in 100% pure Python.
-
-.. note::
-
- This module is unnecessary: everything here can be done using the string
- formatting functions described in the :ref:`string-formatting` section.
-
-The :mod:`fpformat` module defines the following functions and an exception:
-
-
-.. function:: fix(x, digs)
-
- Format *x* as ``[-]ddd.ddd`` with *digs* digits after the point and at least one
- digit before. If ``digs <= 0``, the decimal point is suppressed.
-
- *x* can be either a number or a string that looks like one. *digs* is an
- integer.
-
- Return value is a string.
-
-
-.. function:: sci(x, digs)
-
- Format *x* as ``[-]d.dddE[+-]ddd`` with *digs* digits after the point and
- exactly one digit before. If ``digs <= 0``, one digit is kept and the point is
- suppressed.
-
- *x* can be either a real number, or a string that looks like one. *digs* is an
- integer.
-
- Return value is a string.
-
-
-.. exception:: NotANumber
-
- Exception raised when a string passed to :func:`fix` or :func:`sci` as the *x*
- parameter does not look like a number. This is a subclass of :exc:`ValueError`
- when the standard exceptions are strings. The exception value is the improperly
- formatted string that caused the exception to be raised.
-
-Example::
-
- >>> import fpformat
- >>> fpformat.fix(1.23, 1)
- '1.2'
-