| 39 | } while (false) |
| 40 | |
| 41 | inline bool vtkPythonGetValue(PyObject* o, long& a) |
| 42 | { |
| 43 | VTK_PYTHON_FLOAT_CHECK(); |
| 44 | |
| 45 | a = PyLong_AsLong(o); |
| 46 | return (a != static_cast<long>(-1) || !PyErr_Occurred()); |
| 47 | } |
| 48 | |
| 49 | inline bool vtkPythonGetValue(PyObject* o, unsigned long& a) |
| 50 | { |
no test coverage detected