diff options
author | mattip <matti.picus@gmail.com> | 2019-02-27 17:28:35 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-05-11 10:12:53 -0700 |
commit | fa709605401b5acde6fa515239ba29a548c53755 (patch) | |
tree | 89891dc21a73524582462ab1c1dcd4b601893596 /numpy/core/multiarray.py | |
parent | c2de04da9b0feb2853b9814c7953aa51a29a058e (diff) | |
download | numpy-fa709605401b5acde6fa515239ba29a548c53755.tar.gz |
BUG: parametrize tests, fix for interaction of count, order
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 8ea71cde4..e9e066bea 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -1132,7 +1132,7 @@ def packbits(a, axis=None, order='big'): ``None`` implies packing the flattened array. order : 'big' or 'little', only the first letter is checked The order of the returned bits. The default is the common standard - where 3 => [0, 0, 0, 0, 0, 1, 1] + where [0, 0, 0, 0, 0, 1, 1] => 3 .. versionadded:: 1.17.0 |