mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
Implements __mul__ for lists so that it is possible to do things like ``` s = [1, 2,] * 3 s == [1, 2, 1, 2, 1, 2] ```
Implements __mul__ for lists so that it is possible to do things like ``` s = [1, 2,] * 3 s == [1, 2, 1, 2, 1, 2] ```