Skip to content

Commit

Permalink
Add missing wrapper methods for doc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Feb 18, 2021
1 parent 3c0923d commit 2362a7b
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions numcodecs/blosc.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,19 @@ def cbuffer_complib(enc):
return blosc.get_clib(enc)


# FIXME
# def cbuffer_metainfo(enc):
# from blosc import blosc_extension as _ext
# return _ext.cbuffer_metainfo(enc)
def set_nthreads(*args, **kwargs):
blosc.set_nthreads(*args, **kwargs)


def cbuffer_metainfo(enc):
# from blosc import blosc_extension as _ext
# return _ext.cbuffer_metainfo(enc)
raise Exception("FIXME")


def decompress(*args, **kwargs):
return blosc.decompress(*args, **kwargs)


def decompress_partial(*args, **kwargs):
raise Exception("FIXME")

0 comments on commit 2362a7b

Please sign in to comment.