| 3589 | class exception : public object { |
| 3590 | public: |
| 3591 | exception() = default; |
| 3592 | exception(handle scope, const char *name, handle base = PyExc_Exception) { |
| 3593 | std::string full_name |
| 3594 | = scope.attr("__name__").cast<std::string>() + std::string(".") + name; |