| 662 | # Implements the Mapping protocol by reusing BareMappingLike's implementation. |
| 663 | # Additionally, inherits from collections.abc.Mapping. |
| 664 | class FormalMappingLike(BareMappingLike, Mapping): |
| 665 | pass |
| 666 | |
| 667 | a1b2c3 = {"a": 1, "b": 2, "c": 3} |
| 668 | # convert mode |
no outgoing calls