prepare for PyCXX 7.0

This commit is contained in:
wmayer
2018-04-18 19:20:50 +02:00
parent 08286c407e
commit 99ec96acd5
36 changed files with 226 additions and 239 deletions

View File

@@ -134,7 +134,7 @@ private:
PyObject *pcObj;
PyObject *inclBig = Py_True;
if (!PyArg_ParseTuple(args.ptr(), "O!|O", &(PyList_Type), &pcObj, &inclBig)) {
throw Py::Exception("expected (listofedges,boolean");
throw Py::TypeError("expected (listofedges,boolean");
}
std::vector<TopoDS_Edge> edgeList;
@@ -191,7 +191,7 @@ private:
{
PyObject *pcObj;
if (!PyArg_ParseTuple(args.ptr(), "O!", &(PyList_Type), &pcObj)) {
throw Py::Exception("expected (listofedges)");
throw Py::TypeError("expected (listofedges)");
}
std::vector<TopoDS_Edge> edgeList;
@@ -248,7 +248,7 @@ private:
if (!PyArg_ParseTuple(args.ptr(), "OdO", &pcObjShape,
&scale,
&pcObjDir)) {
throw Py::Exception("expected (shape,scale,direction");
throw Py::TypeError("expected (shape,scale,direction");
}
if (!PyObject_TypeCheck(pcObjShape, &(TopoShapePy::Type))) {
@@ -308,7 +308,7 @@ private:
{
PyObject *viewObj;
if (!PyArg_ParseTuple(args.ptr(), "O", &viewObj)) {
throw Py::Exception("expected (DrawViewPart)");
throw Py::TypeError("expected (DrawViewPart)");
}
Py::String dxfReturn;
@@ -363,7 +363,7 @@ private:
{
PyObject *viewObj;
if (!PyArg_ParseTuple(args.ptr(), "O", &viewObj)) {
throw Py::Exception("expected (DrawViewPart)");
throw Py::TypeError("expected (DrawViewPart)");
}
Py::String svgReturn;
std::string grpHead1 = "<g fill=\"none\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"";