summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_packbits.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
| | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
* ENH: changes from reviewmattip2019-05-111-25/+29
|
* BUG: parametrize tests, fix for interaction of count, ordermattip2019-05-111-41/+69
|
* ENH: add 'order' keyword to packbits, unpackbitsmattip2019-05-111-6/+21
|
* ENH: Added count parameter to unpackbitsJoseph Fox-Rabinovitz2019-02-251-0/+63
| | | | | | | | Tests are included. Couple of minor fixes: - Fixed packbits/unpackbits docs to reflect proper keyword names - Added .pytest_cache to .gitignore
* MAINT: Remove all uses of run_module_suite.Charles Harris2018-04-061-7/+1
| | | | | That function is nose specific and has not worked since `__init__` files were added to the tests directories.
* BUG: fix wrong odd determination in packbitsJulian Taylor2017-02-191-0/+9
| | | | closes gh-8637
* TST: add extended packbits testsJulian Taylor2017-01-121-1/+178
| | | | | Larger data to account for future vectorization. Also add benchmarks for packbits and unpackbits
* BUG: fix packbits and unpackbits to correctly handle empty arraysTakuya Akiba2016-12-021-2/+63
|
* MAINT: Include from __future__ boilerplate in some files missing it.Charles Harris2015-12-051-1/+2
| | | | | Some newer *.py files are missing the `from __future__` boilerplate that helps assure Python2 and Python3 compatibility.
* ENH ensure np.packbits works on np.bool dtypeLars Buitinck2014-11-301-6/+10
|
* MAINT/TST: refactor and test packbits/unpackbitsLars Buitinck2014-11-301-0/+22
Pushes the GIL release one loop outward. First test for these functions (!). Incorporates suggestions by @jaimefrio and @charris.