| 38 | |
| 39 | template <class Key, class Value> |
| 40 | void setattr(object const& target, Key const& key, Value const& value BOOST_PYTHON_NO_ARRAY_ARG(Key)) |
| 41 | { |
| 42 | setattr(target, object(key), object(value)); |
| 43 | } |
| 44 | |
| 45 | template <class Key> |
| 46 | void delattr(object const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) |
no test coverage detected