py3: fix Python2 build

This commit is contained in:
wmayer 2017-02-28 18:08:06 +01:00
parent 70aebe98f1
commit 1a4385e0a5
2 changed files with 0 additions and 36 deletions

View File

@ -227,15 +227,9 @@ PyObject* PointsPy::fromValid(PyObject * args)
}
}
#if PY_MAJOR_VERSION >= 3
Py::Long PointsPy::getCountPoints(void) const
{
return Py::Long((long)getPointKernelPtr()->size());
#else
Py::Int PointsPy::getCountPoints(void) const
{
return Py::Int((long)getPointKernelPtr()->size());
#endif
}
Py::List PointsPy::getPoints(void) const

View File

@ -218,7 +218,6 @@ void WaypointPy::setCont(Py::Boolean arg)
getWaypointPtr()->Cont = (bool)arg;
}
#if PY_MAJOR_VERSION >= 3
Py::Long WaypointPy::getTool(void) const
{
return Py::Long((long)getWaypointPtr()->Tool);
@ -246,35 +245,6 @@ void WaypointPy::setBase(Py::Long arg)
else
throw Py::ValueError("negative base not allowed!");
}
#else
Py::Int WaypointPy::getTool(void) const
{
return Py::Int((long)getWaypointPtr()->Tool);
}
void WaypointPy::setTool(Py::Int arg)
{
long value = static_cast<long>(arg);
if (value >= 0)
getWaypointPtr()->Tool = value;
else
throw Py::ValueError("negative tool not allowed!");
}
Py::Int WaypointPy::getBase(void) const
{
return Py::Int((long)getWaypointPtr()->Base);
}
void WaypointPy::setBase(Py::Int arg)
{
long value = static_cast<long>(arg);
if (value >= 0)
getWaypointPtr()->Base = value;
else
throw Py::ValueError("negative base not allowed!");
}
#endif
PyObject *WaypointPy::getCustomAttributes(const char* /*attr*/) const
{