diff options
author | Antony Lee <anntzer.lee@gmail.com> | 2016-04-07 01:10:11 -0700 |
---|---|---|
committer | seberg <sebastian@sipsolutions.net> | 2016-04-07 10:10:11 +0200 |
commit | bcbed877f42ed6e9b01b2125134db4b6395f1d9d (patch) | |
tree | 2e4fe5e4dde9c5ec4170272c050479991f4ab1e9 /doc | |
parent | ac21efdd9d5d69198bc0802645826a4b1240952a (diff) | |
download | numpy-bcbed877f42ed6e9b01b2125134db4b6395f1d9d.tar.gz |
BUG: Add bytes to numpy.sctypes in Python 3.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.12.0-notes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/1.12.0-notes.rst b/doc/release/1.12.0-notes.rst index 084f6bac5..eaf0ffd70 100644 --- a/doc/release/1.12.0-notes.rst +++ b/doc/release/1.12.0-notes.rst @@ -192,6 +192,12 @@ from these operations. Also, reduction of a memmap (e.g. ``.sum(axis=None``) now returns a numpy scalar instead of a 0d memmap. +numpy.sctypes now includes bytes on Python3 too +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Previously, it included str (bytes) and unicode on Python2, but only str +(unicode) on Python3. + + Deprecations ============ |