(self, c)
| 989 | return bb |
| 990 | |
| 991 | def encode_collection(self, c): |
| 992 | self.write_uint(len(c)) |
| 993 | for s in c: |
| 994 | s.encode(self) |
| 995 | |
| 996 | def decode_collection(self, c, factory): |
| 997 | for i in range(0, self.read_uint()): |
nothing calls this directly
no test coverage detected