-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: using StringBuilder for strings (#32)
* feat: using StringBuilder for strings * test: stringbuilder creates a different masked array However this is probably the intended behaviour * test: encode bytes to a list of integers for testing * ci: add numpy for testing
- Loading branch information
Showing
6 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule kaitai_struct_compiler
updated
from a1d7d3 to a32e99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .utils import BytesToIntListEncoder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import json | ||
import numpy as np | ||
|
||
|
||
class BytesToIntListEncoder(json.JSONEncoder): | ||
"""Allows encoding of a bytestring to JSON by turning it into | ||
a list of `uint8`""" | ||
|
||
def default(self, o): | ||
if isinstance(o, bytes): | ||
return np.frombuffer(o, dtype=np.uint8).tolist() | ||
else: | ||
return super().default(o) |