| 235 | } |
| 236 | |
| 237 | nlohmann::json EmbeddedPython::eval_locals(const std::string &pystring) const { |
| 238 | py::object pylocal; |
| 239 | py::exec(pystring, py::globals(), pylocal); |
| 240 | return pylocal; |
| 241 | } |
| 242 | |
| 243 | nlohmann::json |
| 244 | EmbeddedPython::eval_locals(const std::string &pystring, const nlohmann::json &locals) const { |