]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/python/test/crossmod_exception_b.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / python / test / crossmod_exception_b.cpp
1 // Copyright (C) 2003 Rational Discovery LLC
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5
6 #include <boost/python.hpp>
7
8 namespace python = boost::python;
9
10 void tossit(){
11 PyErr_SetString(PyExc_IndexError,"b-blah!");
12 throw python::error_already_set();
13 }
14
15 BOOST_PYTHON_MODULE(crossmod_exception_b)
16 {
17 python::def("tossit",tossit);
18 }