| 106 | static TestContext *createNewContextForInit() { return new TestContext("new-context"); } |
| 107 | |
| 108 | pybind11::object contextEnter() { |
| 109 | py::object contextObj = py::cast(*this); |
| 110 | return contextObj; |
| 111 | } |
| 112 | void contextExit(const pybind11::object & /*excType*/, |
| 113 | const pybind11::object & /*excVal*/, |
| 114 | const pybind11::object & /*excTb*/) {} |