| 31 | |
| 32 | template <typename T> |
| 33 | bp::str generic_repr(const T& t) { |
| 34 | std::ostringstream os; |
| 35 | os << t; |
| 36 | return os.str().c_str(); |
| 37 | } |
| 38 | |
| 39 | struct generic_iterator { |
| 40 | generic_iterator(bp::object o) : iterable(o), size(bp::len(iterable)) {} |
nothing calls this directly
no outgoing calls
no test coverage detected