diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-05-19 11:41:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-19 11:41:24 +0300 |
commit | a86c7e536d9c9dc564f538ce070c758cf7e2a127 (patch) | |
tree | 0829faba6ea6e45e9bb53b816befc9b9d0aef4fb /doc | |
parent | b74e419441cd58c7141be6594fb3eb086020c42d (diff) | |
parent | ecb402499dba2d105b2714a55259352c31a62bd5 (diff) | |
download | numpy-a86c7e536d9c9dc564f538ce070c758cf7e2a127.tar.gz |
Merge pull request #13491 from eric-wieser/npy-2.1
BUG/ENH: Create npy format 3.0 to support extended unicode characters in dtypes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.17.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.17.0-notes.rst b/doc/release/1.17.0-notes.rst index 1d9bb8f1a..c4c88fd20 100644 --- a/doc/release/1.17.0-notes.rst +++ b/doc/release/1.17.0-notes.rst @@ -173,12 +173,18 @@ Floating point scalars implement ``as_integer_ratio`` to match the builtin float This returns a (numerator, denominator) pair, which can be used to construct a `fractions.Fraction`. +``.npy`` files support unicode field names +------------------------------------------ +A new format version of 3.0 has been introduced, which enables structured types +with non-latin1 field names. This is used automatically when needed. + `numpy.packbits` and `numpy.unpackbits` accept an ``order`` keyword ------------------------------------------------------------------- The ``order`` keyword defaults to ``big``, and will order the **bits** accordingly. For ``'big'`` 3 will become ``[0, 0, 0, 0, 0, 0, 1, 1]``, and ``[1, 1, 0, 0, 0, 0, 0, 0]`` for ``little`` + Improvements ============ |