File tree Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
1
import sys
2
2
3
-
4
- import numcodecs as codecs
5
- from numcodecs import blosc
3
+ import numcodecs
6
4
import numpy as np
7
5
from numpy .testing import assert_array_equal
8
6
9
7
10
- codec = codecs .Blosc ()
8
+ codec = numcodecs .Blosc ()
11
9
data = np .arange (int (sys .argv [1 ]))
12
10
for i in range (int (sys .argv [2 ])):
13
11
enc = codec .encode (data )
Original file line number Diff line number Diff line change @@ -7,6 +7,27 @@ Release notes
7
7
# re-indented so that it does not show up in the notes.
8
8
9
9
10
+ .. _unreleased :
11
+
12
+ Unreleased
13
+ ----------
14
+
15
+ Enhancements
16
+ ~~~~~~~~~~~~
17
+
18
+ *
19
+
20
+ Fix
21
+ ~~~
22
+
23
+ *
24
+
25
+ Maintenance
26
+ ~~~~~~~~~~~
27
+
28
+ * Cleanup ``import``s in ``adhoc/blosc_memleak_check.py ``
29
+ By :user: `John Kirkham <jakirkham> `, :issue: `408 `.
30
+
10
31
.. _release_0.11.0 :
11
32
12
33
0.11.0
You can’t perform that action at this time.
0 commit comments