| 610 | # Implements the Sequence protocol by reusing BareSequenceLike's implementation. |
| 611 | # Additionally, inherits from collections.abc.Sequence. |
| 612 | class FormalSequenceLike(BareSequenceLike, Sequence): |
| 613 | pass |
| 614 | |
| 615 | # convert mode |
| 616 | assert ( |
no outgoing calls