summaryrefslogtreecommitdiff
path: root/math/py-fpconst/DESCR
diff options
context:
space:
mode:
Diffstat (limited to 'math/py-fpconst/DESCR')
-rw-r--r--math/py-fpconst/DESCR9
1 files changed, 9 insertions, 0 deletions
diff --git a/math/py-fpconst/DESCR b/math/py-fpconst/DESCR
new file mode 100644
index 00000000000..5cd2145c1ee
--- /dev/null
+++ b/math/py-fpconst/DESCR
@@ -0,0 +1,9 @@
+This python module implements constants and functions for working with IEEE754
+double-precision special values. It provides constants for Not-a-Number (NaN),
+Positive Infinity (Inf), and Negative Infinity (-Inf), as well as functions to
+test for these values.
+
+The code is implemented in pure python by taking advantage of the 'struct'
+standard module. Care has been taken to generate proper results on both
+big-endian and little-endian machines. Some efficiency could be gained by
+translating the core routines into C.