| 122 | { |
| 123 | |
| 124 | boost::python::tuple valueValid2( const IECore::Parameter &that ) |
| 125 | { |
| 126 | std::string reason; |
| 127 | bool valid = that.valueValid( &reason ); |
| 128 | return boost::python::make_tuple( valid, reason ); |
| 129 | } |
| 130 | |
| 131 | } // namespace Detail |
| 132 |
nothing calls this directly
no test coverage detected