(self, capfd)
| 110 | |
| 111 | class Capture: |
| 112 | def __init__(self, capfd): |
| 113 | self.capfd = capfd |
| 114 | self.out = "" |
| 115 | self.err = "" |
| 116 | |
| 117 | def __enter__(self): |
| 118 | self.capfd.readouterr() |
nothing calls this directly
no outgoing calls
no test coverage detected