python-hyperscan icon indicating copy to clipboard operation
python-hyperscan copied to clipboard

loadb docs example requires a mode

Open jcushman opened this issue 1 year ago • 0 comments

As of v0.5.0 this example from the docs doesn't work:

# Deserializing (loading from bytes):
db = hyperscan.loadb(serialized)

because loadb has a mandatory mode parameter. Do the docs want to be updated to db = hyperscan.loadb(serialized, mode=hyperscan.HS_MODE_BLOCK), or does loadb want a default mode value? I'm guessing you added the breaking change because it's unsafe to loadb without supplying the same mode that was used when dumping, so the fix is a docs update.

jcushman avatar Apr 04 '24 21:04 jcushman