Skip to content

Commit e1c80fb

Browse files
authored
Make InternalTerm module_local (#600)
1 parent 5408542 commit e1c80fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/python/runtime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void bind_runtime(py::module_ &m) {
5151
// that we get from the Pybind wrappers make it really easy to break things.
5252
// We therefore have to wrap it up in some external Python code; see
5353
// package/kllvm/__init__.py for the details of the external class.
54-
py::class_<block, raw_ptr<block>>(m, "InternalTerm")
54+
py::class_<block, raw_ptr<block>>(m, "InternalTerm", py::module_local())
5555
.def(py::init([](KOREPattern const *init) {
5656
return static_cast<block *>(constructInitialConfiguration(init));
5757
}))

0 commit comments

Comments
 (0)