(self)
| 874 | self.currentstream = Stream(id, len, self, extra, png) |
| 875 | |
| 876 | def endStream(self): |
| 877 | if self.currentstream is not None: |
| 878 | self.currentstream.end() |
| 879 | self.currentstream = None |
| 880 | |
| 881 | def outputStream(self, ref, data, *, extra=None): |
| 882 | self.beginStream(ref.id, None, extra) |
no test coverage detected