File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3131
3232def init ():
3333 """Initialize the Blosc library environment."""
34- blosc_init ()
34+ blosc . init ()
3535
3636
3737def destroy ():
3838 """Destroy the Blosc library environment."""
39- blosc_destroy ()
39+ blosc . destroy ()
4040
4141
4242def compname_to_compcode (cname ):
@@ -45,7 +45,7 @@ def compname_to_compcode(cname):
4545 instead."""
4646 if isinstance (cname , str ):
4747 cname = cname .encode ('ascii' )
48- return blosc_compname_to_compcode (cname )
48+ return blosc . compname_to_compcode (cname )
4949
5050
5151def list_compressors ():
@@ -56,7 +56,7 @@ def list_compressors():
5656def get_nthreads ():
5757 """Get the number of threads that Blosc uses internally for compression and
5858 decompression."""
59- return blosc_get_nthreads ()
59+ return blosc . get_nthreads ()
6060
6161
6262def err_bad_cname (cname ):
You can’t perform that action at this time.
0 commit comments