(self, *args)
| 5621 | self.b = b |
| 5622 | return self |
| 5623 | def __init__(self, *args): |
| 5624 | super().__init__() |
| 5625 | # This helps testing that __init__ is not called during the |
| 5626 | # unpickling process, which would cause extra appends. |
| 5627 | self.append("cheese") |
| 5628 | @classmethod |
| 5629 | def __getnewargs__(cls): |
| 5630 | return cls.ARGS |