Terms of sort Bytes and String are both stored in a kore_string_pattern in the AST library and treated the same way when being accessed from the bindings:
|
py::class_<kore_string_pattern, std::shared_ptr<kore_string_pattern>>( |
|
ast, "StringPattern", pattern_base) |
|
.def(py::init(&kore_string_pattern::create)) |
|
.def_property_readonly("contents", &kore_string_pattern::get_contents); |
The issue here is when the contents property is accessed, pybind assumes it's a valid utf encoded string. This isn't always the case for Bytes terms, though, and an exception gets thrown in that case.
Pybind does support returning an unconverted string, so we should find out how to do that for terms that need to be treated that way.
https://pybind11.readthedocs.io/en/stable/advanced/cast/strings.html#returning-c-strings-to-python
Terms of sort
BytesandStringare both stored in akore_string_patternin the AST library and treated the same way when being accessed from the bindings:llvm-backend/bindings/python/ast.cpp
Lines 360 to 363 in 2983a01
The issue here is when the
contentsproperty is accessed, pybind assumes it's a valid utf encoded string. This isn't always the case forBytesterms, though, and an exception gets thrown in that case.Pybind does support returning an unconverted string, so we should find out how to do that for terms that need to be treated that way.
https://pybind11.readthedocs.io/en/stable/advanced/cast/strings.html#returning-c-strings-to-python