diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-11 20:30:53 -0700 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-19 08:57:52 +0200 |
commit | 69bd8010edb30674f39d2fc3b7ae0a1d03b55c23 (patch) | |
tree | 11f5659aea12ab6a7ba055f099bc1a0dbb0b7ab6 /numpy/lib/format.py | |
parent | acf62f6881afb2f6e0efc9db6acc44c3c8614528 (diff) | |
download | numpy-69bd8010edb30674f39d2fc3b7ae0a1d03b55c23.tar.gz |
TST: make xfailed test for modules in public API pass.
Diffstat (limited to 'numpy/lib/format.py')
-rw-r--r-- | numpy/lib/format.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/format.py b/numpy/lib/format.py index 3bf818812..1ecd72815 100644 --- a/numpy/lib/format.py +++ b/numpy/lib/format.py @@ -173,6 +173,9 @@ from numpy.compat import ( ) +__all__ = [] + + MAGIC_PREFIX = b'\x93NUMPY' MAGIC_LEN = len(MAGIC_PREFIX) + 2 ARRAY_ALIGN = 64 # plausible values are powers of 2 between 16 and 4096 |