(self, *args)
| 599 | # Implements the Sequence protocol without explicitly inheriting from collections.abc.Sequence. |
| 600 | class BareSequenceLike: |
| 601 | def __init__(self, *args): |
| 602 | self.data = tuple(args) |
| 603 | |
| 604 | def __len__(self): |
| 605 | return len(self.data) |