rest25/library/fpformat.rst => rest262/library/fpformat.rst
f1
2:mod:`fpformat` --- Floating point conversions
3==============================================
4
5.. module:: fpformat
6   :synopsis: General floating point formatting functions.
n7+   :deprecated:
8+ 
9+.. deprecated:: 2.6
10+    The :mod:`fpformat` module has been removed in Python 3.0.
11+ 
7.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
8
9
10The :mod:`fpformat` module defines functions for dealing with floating point
11numbers representations in 100% pure Python.
12
13.. note::
14
t15-   This module is unneeded: everything here could be done via the ``%`` string
t20+   This module is unnecessary: everything here can be done using the ``%`` string
16-   interpolation operator.
21+   interpolation operator described in the :ref:`string-formatting` section.
17
18The :mod:`fpformat` module defines the following functions and an exception:
19
20
21.. function:: fix(x, digs)
22
23   Format *x* as ``[-]ddd.ddd`` with *digs* digits after the point and at least one
24   digit before. If ``digs <= 0``, the decimal point is suppressed.
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op