(self, *args)
| 5858 | self.b = b |
| 5859 | return self |
| 5860 | def __init__(self, *args): |
| 5861 | super().__init__() |
| 5862 | # This helps testing that __init__ is not called during the |
| 5863 | # unpickling process, which would cause extra appends. |
| 5864 | self.append("cheese") |
| 5865 | @classmethod |
| 5866 | def __getnewargs__(cls): |
| 5867 | return cls.ARGS |