| 1217 | error_scope(const error_scope &) = delete; |
| 1218 | error_scope &operator=(const error_scope &) = delete; |
| 1219 | ~error_scope() { PyErr_Restore(type, value, trace); } |
| 1220 | }; |
| 1221 | |
| 1222 | /// Dummy destructor wrapper that can be used to expose classes with a private destructor |
nothing calls this directly
no outgoing calls
no test coverage detected