(meth)
| 34 | |
| 35 | # clone all methods not overridden: |
| 36 | def clone(meth): |
| 37 | return not hasattr(self, meth) and not meth.startswith('_') |
| 38 | for meth in filter(clone, dir(stream)): |
| 39 | try: |
| 40 | val = getattr(stream, meth) |
nothing calls this directly
no outgoing calls
no test coverage detected