diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-02-12 13:09:29 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-02-13 10:48:24 -0700 |
commit | 05164650d0818f6a8fbbe81612666f96f0f0efdf (patch) | |
tree | becb5cbac1c3119017cf26abed0a541035dd0e85 /doc | |
parent | 31f5d40b6c5a1ea1cafd2a0892bd53f7e6d50061 (diff) | |
download | numpy-05164650d0818f6a8fbbe81612666f96f0f0efdf.tar.gz |
DOC: Document loadtxt support for float.hex float representation.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index ec54b1f14..a758be6b5 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -139,6 +139,11 @@ fallback implementations of the following functions. As a result of these improvements, there will be some small changes in returned values, especially for corner cases. +*np.loadtxt* support for the strings produced by the ``float.hex`` method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The strings produced by ``float.hex`` look like ``0x1.921fb54442d18p+1``, +so this is not the hex used to represent unsigned integer types. + Changes ======= |