Message 306292 - Python tracker (original) (raw)

Typo in the last comment. The code should be:

''' def init(self, partial, expected): super().init(partial, expected) self.partial = partial self.expected = expected def str(self): return ("%d bytes read on a total of %r expected bytes" % (len(self.partial), self.expected)) '''