| 44 | |
| 45 | #if BLUE_WITH_PYTHON |
| 46 | PyObject* PyRepr( PyObject* self, PyObject* args ) |
| 47 | { |
| 48 | TriSettings* pThis = BluePythonCast<TriSettings*>( self ); |
| 49 | // the cast above will always succeed |
| 50 | |
| 51 | std::string repr = pThis->GetReprString(); |
| 52 | return ToPython( repr.c_str() ); |
| 53 | } |
| 54 | |
| 55 | static PyObject* PyGetValue( PyObject* self, PyObject* args ) |
| 56 | { |
nothing calls this directly
no test coverage detected